Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 280 for because3 (0.22 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GradleResolveVisitor.java

        }
    
        @Override
        protected boolean resolveToInner(ClassNode type) {
            // we do not do our name mangling to find an inner class
            // if the type is a ConstructedClassWithPackage, because in this case we
            // are resolving the name at a different place already
            if (type instanceof ConstructedClassWithPackage) {
                return false;
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 67.6K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				// fields that are unknown because they were not specified on the object schema are included in equality checks
    				"self.withUnknownList[0] != self.withUnknownList[1]": 7,
    				"self.withUnknownList[1] == self.withUnknownList[2]": 7,
    				"self.withUnknownList[3] == self.withUnknownList[4]": 6,
    
    				// fields specified on the object schema that are unknown because the field's schema is unknown are also included equality checks
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	// As we scan the array left-to-right, each sa[i] = j > 0 is a correctly
    	// sorted suffix array entry (for text[j:]) for which we know that j-1 is type L.
    	// Because j-1 is type L, inserting it into sa now will sort it correctly.
    	// But we want to distinguish a j-1 with j-2 of type L from type S.
    	// We can process the former but want to leave the latter for the caller.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. src/cmd/dist/build.go

    func xinit() {
    	b := os.Getenv("GOROOT")
    	if b == "" {
    		fatalf("$GOROOT must be set")
    	}
    	goroot = filepath.Clean(b)
    	gorootBin = pathf("%s/bin", goroot)
    
    	// Don't run just 'go' because the build infrastructure
    	// runs cmd/dist inside go/bin often, and on Windows
    	// it will be found in the current directory and refuse to exec.
    	// All exec calls rewrite "go" into gorootBinGo.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 18:34:40 UTC 2024
    - 54K bytes
    - Viewed (0)
  5. pkg/kubelet/status/status_manager_test.go

    	t.Logf("Should sync pod because the corresponding mirror pod is created")
    	assert.Equal(t, m.syncBatch(true), 1)
    	verifyActions(t, m, []core.Action{getAction(), patchAction()})
    
    	t.Logf("syncBatch should not sync any pods because nothing is changed.")
    	m.testSyncBatch()
    	verifyActions(t, m, []core.Action{})
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 16:27:19 UTC 2024
    - 68.1K bytes
    - Viewed (0)
  6. src/go/types/expr.go

    			x.mode = invalid
    			return
    		}
    
    		if isUntyped(y.typ) {
    			// Caution: Check for representability here, rather than in the switch
    			// below, because isInteger includes untyped integers (was bug go.dev/issue/43697).
    			check.representable(y, Typ[Uint])
    			if y.mode == invalid {
    				x.mode = invalid
    				return
    			}
    		}
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 02:09:54 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/prove.go

    }
    
    // domain represents the domain of a variable pair in which a set
    // of relations is known. For example, relations learned for unsigned
    // pairs cannot be transferred to signed pairs because the same bit
    // representation can mean something else.
    type domain uint
    
    const (
    	signed domain = 1 << iota
    	unsigned
    	pointer
    	boolean
    )
    
    var domainStrings = [...]string{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    	// the c.watchCache.RLock held otherwise we are at risk of a deadlock
    	// mainly because c.watchCache.processEvent method won't be able to make progress
    	//
    	// moreover even though the c.waitUntilWatchCacheFreshAndForceAllEvents acquires a lock
    	// it is safe to release the lock after the method finishes because we don't require
    	// any atomicity between the call to the method and further calls that actually get the events.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	// For native resources, we can easily figure out these tags since we know the fields.
    
    	// Because custom resources are decoded as Unstructured and because we're missing the metadata about how to handle
    	// each field in a strategic merge patch, we can't find the go struct tags. Hence, we can't easily  do a strategic merge
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        [(AnyStaticShapeTensor $input),
          (IsReducedTailOfShape $rhs, $lhs),
          (IsLastDimEqualToNumElements $input, $rhs),
          (HasOneUse $lhs),
          // Restrict operands to have at most rank 4 because TFLite binary
          // kernel supports up to 4D broadcast.
          (HasRankAtMost<4> $input),
          (HasRankAtMost<4> $lhs),
          (HasRankAtMost<4> $rhs),
          (IsDefinedByFullyConnectedOp $input)]>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
Back to top