Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 183 for addSdk (0.35 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    		if diffOptions.BuildRetainKeysDirective && modifiedValue != nil {
    			retainKeysList = append(retainKeysList, key)
    		}
    
    		originalValue, ok := original[key]
    		if !ok {
    			// Key was added, so add to patch
    			if !diffOptions.IgnoreChangesAndAdditions {
    				patch[key] = modifiedValue
    			}
    			continue
    		}
    
    		// The patch may have a patch directive
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    					}
    					ret = next
    				}
    			}
    		} else {
    			ret, _ = st.name()
    			// This substitution is not itself a
    			// substitution candidate, unless template
    			// arguments were added.
    			if ret == subAST[c2] || ret == verboseAST[c2] {
    				addSubst = false
    			}
    		}
    	case 'O', 'P', 'R', 'C', 'G':
    		st.advance(1)
    		t := st.demangleType(isCast)
    		switch c {
    		case 'O':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/IvyXmlModuleDescriptorParser.java

             * itself is returned.
             *
             * @param conf
             *            the configuration to evaluate
             * @param dd
             *            the dependencydescriptor to which the configuration will be added
             * @return the evaluated condition
             */
            private String evaluateCondition(String conf, DefaultDependencyDescriptor dd) {
                if (conf.charAt(0) != '[') {
                    return conf;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 65K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/dwarf.go

    	if isdw64 {
    		lengthFieldSize += 8
    	}
    
    	// Emit the CIE, Section 6.4.1
    	cieReserve := uint32(16)
    	if haslr {
    		cieReserve = 32
    	}
    	if isdw64 {
    		cieReserve += 4 // 4 bytes added for cid
    	}
    	d.createUnitLength(fsu, uint64(cieReserve))         // initial length, must be multiple of thearch.ptrsize
    	d.addDwarfAddrField(fsu, ^uint64(0))                // cid
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 16:25:18 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  5. pkg/controller/endpoint/endpoints_controller_test.go

    	}, {
    		name:                "annotation added past capacity, < than maxCapacity of Ready Addresses",
    		startingAnnotation:  nil,
    		numExisting:         maxCapacity - 1,
    		numDesired:          maxCapacity - 3,
    		numDesiredNotReady:  4,
    		numExpectedReady:    maxCapacity - 3,
    		numExpectedNotReady: 3,
    		expectedAnnotation:  true,
    	}, {
    		name:                "annotation added past capacity, maxCapacity of Ready Addresses ",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Feb 26 06:51:56 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    ====
    Note that the configuration cache would be invalidated not only when the value of the variable changes or the variable is removed but also
    when another variable with the matching prefix is added to the environment.
    
    For more complex use cases a custom link:{javadocPath}/org/gradle/api/provider/ValueSource.html[ValueSource] implementation can be used.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  7. src/crypto/tls/handshake_client_test.go

    	for i := 0; i < 4; i++ {
    		cache.Put(keys[i], &cs[i])
    	}
    	for i := 0; i < 4; i++ {
    		if s, ok := cache.Get(keys[i]); !ok || s != &cs[i] {
    			t.Fatalf("session cache failed lookup for added key: %s", keys[i])
    		}
    	}
    
    	// Add 2 more entries to the cache. First 2 should be evicted.
    	for i := 4; i < 6; i++ {
    		cache.Put(keys[i], &cs[i])
    	}
    	for i := 0; i < 2; i++ {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 88.7K bytes
    - Viewed (0)
  8. cluster/gce/windows/k8s-node-setup.psm1

      # a "Ethernet" interface, and the route to the metadata server exists on the
      # Ethernet interface. After adding the HNS network a "vEthernet (Ethernet)"
      # interface is added, and it seems to subsume the routes of the "Ethernet"
      # interface (trying to add routes on the Ethernet interface at this point just
      # results in "New-NetRoute : Element not found" errors). I don't know what's
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  9. configure.py

        return None
    
      print('You have Clang %s installed.\n' % curr_version)
      return curr_version
    
    
    # Disable clang extension that rejects type definitions within offsetof.
    # This was added in clang-16 by https://reviews.llvm.org/D133574.
    # Still required for clang-17.
    # Can be removed once upb is updated, since a type definition is used within
    # offset of in the current version of ubp. See
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (1)
  10. src/cmd/compile/internal/ssa/_gen/S390X.rules

    (MOVHreg (MOVDconst [c])) => (MOVDconst [int64(int16(c))])
    (MOVWreg (MOVDconst [c])) => (MOVDconst [int64(int32(c))])
    
    // Remove zero extension of conditional move.
    // Note: only for MOVBZreg for now since it is added as part of 'if' statement lowering.
    (MOVBZreg x:(LOCGR (MOVDconst [c]) (MOVDconst [d]) _))
      && int64(uint8(c)) == c
      && int64(uint8(d)) == d
      && (!x.Type.IsSigned() || x.Type.Size() > 1)
      => x
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 18:09:26 UTC 2023
    - 74.3K bytes
    - Viewed (0)
Back to top