Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 227 for prepending (0.33 sec)

  1. tensorflow/compiler/mlir/tensorflow/analysis/resource_alias_analysis.h

      // This is correct for all current cases. A problematic case could be if we
      // had two ops A and B, A has the `ResourceHandleAllocatorInterface` and B has
      // not, and both ops might return a handle to the same resource (depending on
      // attributes). In this case, the return value of A would get a different ID
      // than the return value of B although both could point to the same resource.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 15 09:04:13 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  2. src/runtime/race.go

    // that it can't see for some reason (e.g. synchronization within RaceDisable/RaceEnable
    // sections of code).
    // RaceAcquire establishes a happens-before relation with the preceding
    // RaceReleaseMerge on addr up to and including the last RaceRelease on addr.
    // In terms of the C memory model (C11 §5.1.2.4, §7.17.3),
    // RaceAcquire is equivalent to atomic_load(memory_order_acquire).
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:37:29 UTC 2024
    - 20.4K bytes
    - Viewed (0)
  3. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGTestClassProcessor.java

            testNg.run();
        }
    
        /**
         * The setter for {@code configFailurePolicy} has a different signature depending on TestNG version.
         * This method uses reflection to detect the API and calls the version with the correct signature.
         *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 21:25:59 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. src/cmd/go/internal/cfg/cfg.go

    			// depending on whether it was cross-compiled with a different
    			// GOHOSTOS (see https://go.dev/issue/62119). Try both.
    			if dir := filepath.Join(exe, "../.."); isGOROOT(dir) {
    				return canonical(dir)
    			}
    			if dir := filepath.Join(exe, "../../.."); isGOROOT(dir) {
    				return canonical(dir)
    			}
    
    			// Depending on what was passed on the command line, it is possible
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 17:13:51 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  5. cmd/batch-job-common-types.go

    		}
    	}
    	return nil
    }
    
    // Empty indicates if kv is not set
    func (kv BatchJobKV) Empty() bool {
    	return kv.Key == "" && kv.Value == ""
    }
    
    // Match matches input kv with kv, value will be wildcard matched depending on the user input
    func (kv BatchJobKV) Match(ikv BatchJobKV) bool {
    	if kv.Empty() {
    		return true
    	}
    	if strings.EqualFold(kv.Key, ikv.Key) {
    		return wildcard.Match(kv.Value, ikv.Value)
    	}
    	return false
    }
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 7.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/watch/watch.go

    	//    bookmark resourceVersion, client is guaranteed to not get repeat event
    	//    nor miss any events.
    	//  * If Type is Error: *api.Status is recommended; other types may make sense
    	//    depending on context.
    	Object runtime.Object
    }
    
    type emptyWatch chan Event
    
    // NewEmptyWatch returns a watch interface that returns no results and is closed.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 20:06:22 UTC 2024
    - 8.1K bytes
    - Viewed (1)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/DeferredTaskConfigurationIntegrationTest.groovy

            """
    
            expect:
            succeeds "foo"
    
            where:
            [description, code] << INVALID_CALL_FROM_LAZY_CONFIGURATION
        }
    
        def "realizes only the task of the given type when depending on a filtered task collection"() {
            buildFile << '''
                def defaultTaskRealizedCount = 0
                (1..100).each {
                    tasks.register("aDefaultTask_$it") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 13:27:33 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiCoupledProjectsIntegrationTest.groovy

                problem("Build file 'b/build.gradle': line 4: Project ':b' cannot access 'myExtension' extension on another project ':a'. Setting 'org.gradle.internal.invalidate-coupled-projects=false' is preventing configuration of another project ':a'")
            }
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  9. src/time/time.go

    // clock reading if present. If t != u because of different monotonic clock readings,
    // that difference will be visible when printing t.String() and u.String().
    //
    // # Timer Resolution
    //
    // [Timer] resolution varies depending on the Go runtime, the operating system
    // and the underlying hardware.
    // On Unix, the resolution is ~1ms.
    // On Windows version 1803 and newer, the resolution is ~0.5ms.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. src/cmd/internal/obj/objfile.go

    // hashed symbols.
    func (w *writer) contentHash(s *LSym) goobj.HashType {
    	h := notsha256.New()
    	var tmp [14]byte
    
    	// Include the size of the symbol in the hash.
    	// This preserves the length of symbols, preventing the following two symbols
    	// from hashing the same:
    	//
    	//    [2]int{1,2} ≠ [10]int{1,2,0,0,0...}
    	//
    	// In this case, if the smaller symbol is alive, the larger is not kept unless
    	// needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 24K bytes
    - Viewed (0)
Back to top