Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 106 for extr6 (1.55 sec)

  1. src/cmd/compile/internal/ssa/debug.go

    // value of startState is adjusted with new information; this is judged
    // to do the least amount of extra work.
    //
    // To improve performance, each block's state information is marked with
    // lastChanged and lastChecked "times" so unchanged predecessors can be
    // skipped on after-the-first iterations.  Doing this allows extra
    // iterations by the caller to be almost free.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/elf.go

    	for _, sect := range Segtext.Sections {
    		if sect.Name == ".text" {
    			numtext++
    		}
    	}
    
    	// If there are multiple text sections, extra space is needed
    	// in the elfreserve for the additional .text and .rela.text
    	// section headers.  It can handle 4 extra now. Headers are
    	// 64 bytes.
    
    	if numtext > 4 {
    		elfreserve += elfreserve + numtext*64*2
    	}
    
    	startva := *FlagTextAddr - int64(HEADR)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
  3. cmd/iam.go

    					normKey, origKeys)
    			}
    
    			if len(origKeys[1:]) > 0 {
    				// Log that extra DN mappings will not be imported.
    				iamLogEvent(ctx, "import-ldap-normalize: extraneous DN mappings found for LDAP DN[%s]: %v will not be imported", origKeys[0], origKeys[1:])
    			}
    
    			// Policies mapped to the DN's are the same, so we remove the extra
    			// ones from the map.
    			for i := 1; i < len(origKeys); i++ {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  4. cmd/kube-controller-manager/app/options/options_test.go

    			RequestHeader: apiserveroptions.RequestHeaderAuthenticationOptions{
    				UsernameHeaders:     []string{"x-remote-user"},
    				GroupHeaders:        []string{"x-remote-group"},
    				ExtraHeaderPrefixes: []string{"x-remote-extra-"},
    			},
    			RemoteKubeConfigFileOptional: true,
    		},
    		Authorization: &apiserveroptions.DelegatingAuthorizationOptions{
    			AllowCacheTTL:                10 * time.Second,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. src/reflect/type.go

    // A cacheKey is the key for use in the lookupCache.
    // Four values describe any of the types we are looking for:
    // type kind, one or two subtypes, and an extra integer.
    type cacheKey struct {
    	kind  Kind
    	t1    *abi.Type
    	t2    *abi.Type
    	extra uintptr
    }
    
    // The funcLookupCache caches FuncOf lookups.
    // FuncOf does not share the common lookupCache since cacheKey is not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 85.5K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    // configures the cfg, codehost, load, modfetch, and search packages for use
    // with modules.
    func Init() {
    	if initialized {
    		return
    	}
    	initialized = true
    
    	// Keep in sync with WillBeEnabled. We perform extra validation here, and
    	// there are lots of diagnostics and side effects, so we can't use
    	// WillBeEnabled directly.
    	var mustUseModules bool
    	env := cfg.Getenv("GO111MODULE")
    	switch env {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test_base.py

        # respectively. These paths will be cleaned up after each test case.
        self._input_saved_model_path = self.create_tempdir('input').full_path
        self._output_saved_model_path = self.create_tempdir('output').full_path
        # Extra output path occasionally used for comparing two different
        # quantized models.
        self._output_saved_model_path_2 = self.create_tempdir('output2').full_path
    
      def _get_dir_size(self, path: str = '.'):
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 21 08:51:46 UTC 2024
    - 51.2K bytes
    - Viewed (0)
  8. pkg/controller/statefulset/stateful_set_utils_test.go

    			if hasPodRef {
    				claimRefs = addControllerRef(claimRefs, &pod, podKind)
    			}
    			if hasSetRef {
    				claimRefs = addControllerRef(claimRefs, &set, controllerKind)
    			}
    			if extraOwner {
    				// Note the extra owner should not affect our owner references.
    				claimRefs = append(claimRefs, metav1.OwnerReference{
    					APIVersion: "custom/v1",
    					Kind:       "random",
    					Name:       "random",
    					UID:        "abc",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 50.9K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

                }
            }
        }
    
        /**
         * Maps [typeArguments] to the type parameters of [partiallyAppliedSymbol].
         *
         * If too many type arguments are provided, a mapping is still created. Extra type arguments are simply ignored. If this wasn't the
         * case, the resulting [KaCall] would contain no type arguments at all, which can cause problems later. If too few type arguments are
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  10. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *    }
         * ```
         *
         * This method works like [X509TrustManager.checkServerTrusted] but it receives the hostname of
         * the server as an extra parameter. Regardless of what checks this method performs, OkHttp will
         * always check that the server's certificates match its hostname using the [HostnameVerifier].
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
Back to top