Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 972 for darkred (0.2 sec)

  1. tensorflow/compiler/jit/extract_outside_compilation_pass.h

    // 4. Mark all nodes except key placeholder with attr `xla_cluster_attr_name`
    //    and `outside_compilation_attr_name`;
    // 5. For nodes marked with attr kXlaConnectedToXlaComputationAttrName, add a
    //    control edge from the node to XlaSendFromHost; for nodes marked with attr
    //    kXlaConnectedFromXlaComputationAttrName, add a control edge from
    //    XlaRecvAtHost node to the node;
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 5.3K bytes
    - Viewed (0)
  2. test/alg.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file tests that required algs are generated,
    // even when similar types have been marked elsewhere
    // as not needing algs. See CLs 19769 and 19770.
    
    package main
    
    import "fmt"
    
    //go:noinline
    func f(m map[[8]string]int) int {
    	var k [8]string
    	return m[k]
    }
    
    //go:noinline
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 24 21:36:52 UTC 2016
    - 822 bytes
    - Viewed (0)
  3. operator/pkg/apis/istio/v1alpha1/values_types.pb.go

    	//
    	// Deprecated: Marked as deprecated in pkg/apis/istio/v1alpha1/values_types.proto.
    	Memory *TargetUtilizationConfig `protobuf:"bytes,4,opt,name=memory,proto3" json:"memory,omitempty"`
    	// K8s utilization setting for HorizontalPodAutoscaler target.
    	//
    	// See https://kubernetes.io/docs/tasks/run-application/horizontal-pod-autoscale/
    	//
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 329.6K bytes
    - Viewed (0)
  4. platforms/extensibility/test-kit/src/integTest/groovy/org/gradle/testkit/runner/GradleRunnerResultIntegrationTest.groovy

    @InspectsExecutedTasks
    @Requires(value = IntegTestPreconditions.NotEmbeddedExecutor, reason = "Test causes builds to hang")
    class GradleRunnerResultIntegrationTest extends BaseGradleRunnerIntegrationTest {
    
        def "execute task actions marked as up-to-date or skipped"() {
            given:
            buildFile << """
                task helloWorld
    
                task byeWorld {
                    onlyIf {
                        false
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 4.5K bytes
    - Viewed (0)
  5. internal/ioutil/ioutil_test.go

    	if writer.HasWritten() {
    		t.Error("WriteOnCloser must not be marked as HasWritten")
    	}
    	writer.Write(nil)
    	if !writer.HasWritten() {
    		t.Error("WriteOnCloser must be marked as HasWritten")
    	}
    
    	writer = WriteOnClose(io.Discard)
    	writer.Close()
    	if !writer.HasWritten() {
    		t.Error("WriteOnCloser must be marked as HasWritten")
    	}
    }
    
    // Test for AppendFile.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  6. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/eclipse/model/EclipseClasspath.java

     *     //if you want to expose test classes to dependent projects
     *     containsTestFixtures = true
     *
     *     //customizing which Eclipse source directories should be marked as test
     *     testSourceSets = [sourceSets.test]
     *
     *     //customizing which dependencies should be marked as test on the project's classpath
     *     testConfigurations = [configurations.testCompileClasspath, configurations.testRuntimeClasspath]
     *   }
     * }
     * </pre>
     *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 13.8K bytes
    - Viewed (0)
  7. src/regexp/testdata/README

        not once.  This is consistent with (a*)* matching a, which
        runs the starred subexpression one time, not twice.
      * The submatch choice is first match, not the POSIX rule.
    
    Such changes are marked with 'RE2/Go'.
    
    
    RE2 Test Files
    
    re2-exhaustive.txt.bz2 and re2-search.txt are built by running
    'make log' in the RE2 distribution https://github.com/google/re2/
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 27 20:18:25 UTC 2015
    - 957 bytes
    - Viewed (0)
  8. src/cmd/cgo/internal/test/issue42018_windows.go

    /*
    typedef void *HANDLE;
    
    struct HWND__{int unused;}; typedef struct HWND__ *HWND;
    */
    import "C"
    
    import (
    	"testing"
    	"unsafe"
    )
    
    func test42018(t *testing.T) {
    	// Test that Windows handles are marked go:notinheap, by growing the
    	// stack and checking for pointer adjustments. Trick from
    	// test/fixedbugs/issue40954.go.
    	var i int
    	handle := C.HANDLE(unsafe.Pointer(uintptr(unsafe.Pointer(&i))))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 12:00:02 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/work_vendor_main_module_replaced.txt

    go list all # make sure the consistency checks pass
    ! stderr .
    
    # Removing the replace causes consistency checks to fail
    cp a_go_mod_no_replace a/go.mod
    ! go list all # consistency checks fail
    stderr 'example.com/b@v0.0.0: is marked as replaced in vendor/modules.txt, but not replaced in the workspace'
    
    
    -- a_go_mod_no_replace --
    module example.com/a
    
    go 1.21
    
    require example.com/b v0.0.0
    -- go.work --
    go 1.21
    
    use (
        a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jul 24 18:09:22 UTC 2023
    - 895 bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/internal/passes/mark_ops_for_outside_compilation.cc

    LogicalResult MarkUncompilableOps(
        const Dialect* tf_dialect, Block* block,
        llvm::DenseSet<OperationName>& supported_ops) {
      // Automatically marked ops for outside compilation have
      // `_xla_outside_compilation` attribute value of "auto" plus
      // an increasing counter.  Manually marked ops for outside compilation only
      // have an increasing counteri for the attribute value.  Therefore there is no
      // collision in
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 21.4K bytes
    - Viewed (0)
Back to top