Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 186 for Enabled (0.16 sec)

  1. okhttp/src/main/kotlin/okhttp3/OkHttpClient.kt

         *
         * This implements Happy Eyeballs ([RFC 6555][rfc_6555]), balancing connect latency vs.
         * wasted resources.
         *
         * Defaults to enabled, call with [fastFallback] = false to revert to 4.x behaviour.
         *
         * [rfc_6555]: https://datatracker.ietf.org/doc/html/rfc6555
         */
        fun fastFallback(fastFallback: Boolean) =
          apply {
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Apr 06 04:21:33 UTC 2024
    - 52K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

          if (flags->tf_xla_cpu_global_jit) {
            LOG(WARNING)
                << "(Although the tf_xla_cpu_global_jit flag is currently enabled, "
                   "perhaps it wasn't enabled at process startup?)";
          }
        });
      }
    
      VLOG(3) << (should_compile ? "Compiling" : "Not compiling")
              << " cluster with device "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/validation/validation.go

    						break
    					}
    					continue
    				}
    
    				if !allowedAtRootSchema(fieldName) {
    					allErrs = append(allErrs, field.Invalid(fldPath.Child("openAPIV3Schema"), *schema, fmt.Sprintf(`only %v fields are allowed at the root of the schema if the status subresource is enabled`, allowedFieldsAtRootSchema)))
    					break
    				}
    			}
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 82.6K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_7.adoc

    WARNING: Use --illegal-access=warn to enable warnings of further illegal reflective access operations
    WARNING: All illegal access operations will be denied in a future release
    ```
    
    With Java 16 or higher, exceptions are thrown that fail the build:
    ```
    // Thrown by TestNG
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 87.7K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/apis/apiserver/validation/validation_test.go

    		want                          string
    		wantCELMapper                 bool
    		wantUsesEmailVerifiedClaim    bool
    	}{
    		{
    			name:                          "claim and expression are empty, structured authn feature enabled",
    			in:                            []api.ClaimValidationRule{{}},
    			structuredAuthnFeatureEnabled: true,
    			want:                          "issuer.claimValidationRules[0]: Required value: claim or expression is required",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 22:07:40 UTC 2024
    - 87.2K bytes
    - Viewed (0)
  6. pkg/kubelet/volumemanager/populator/desired_state_of_world_populator_test.go

    			expectedContext:         "", // RWX volumes don't support SELinux
    		},
    		{
    			name:                       "RWX with plugin with SELinux with full context in pod and SELinuxMount feature enabled",
    			accessModes:                []v1.PersistentVolumeAccessMode{v1.ReadWriteMany},
    			newContainerSELinuxOpts:    fullOpts,
    			pluginSupportsSELinux:      true,
    			seLinuxMountFeatureEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  7. pkg/proxy/nftables/proxier.go

    	if err != nil {
    		return nil, fmt.Errorf("unable to create ipv4 proxier: %v", err)
    	}
    
    	ipv6Proxier, err := NewProxier(ctx, v1.IPv6Protocol,
    		syncPeriod, minSyncPeriod, masqueradeAll, masqueradeBit,
    		localDetectors[v1.IPv6Protocol], hostname, nodeIPs[v1.IPv6Protocol],
    		recorder, healthzServer, nodePortAddresses, initOnly)
    	if err != nil {
    		return nil, fmt.Errorf("unable to create ipv6 proxier: %v", err)
    	}
    	if initOnly {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  8. pkg/volume/csi/csi_attacher_test.go

    			spec:       volume.NewSpecFromVolume(makeTestVol("pv01", "driver02")),
    			shouldFail: true, // csi not enabled
    		},
    		{
    			name:       "missing spec",
    			nodeName:   "node000",
    			driverName: "driver000",
    			volumeName: "vol02",
    			attachID:   getAttachmentName("vol02", "driver02", "node02"),
    			shouldFail: true, // csi not enabled
    		},
    	}
    
    	// attacher loop
    	for _, tc := range testCases {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 58.1K bytes
    - Viewed (0)
  9. pkg/controller/daemon/daemon_controller.go

    				podsToDelete = append(podsToDelete, pod.Name)
    			} else {
    				daemonPodsRunning = append(daemonPodsRunning, pod)
    			}
    		}
    
    		// When surge is not enabled, if there is more than 1 running pod on a node delete all but the oldest
    		if !util.AllowsSurge(ds) {
    			if len(daemonPodsRunning) <= 1 {
    				// There are no excess pods to be pruned, and no pods to create
    				break
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 51.3K bytes
    - Viewed (0)
  10. src/runtime/mbitmap.go

    //
    //go:nosplit
    func bulkBarrierPreWrite(dst, src, size uintptr, typ *abi.Type) {
    	if (dst|src|size)&(goarch.PtrSize-1) != 0 {
    		throw("bulkBarrierPreWrite: unaligned arguments")
    	}
    	if !writeBarrier.enabled {
    		return
    	}
    	s := spanOf(dst)
    	if s == nil {
    		// If dst is a global, use the data or BSS bitmaps to
    		// execute write barriers.
    		for _, datap := range activeModules() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 60K bytes
    - Viewed (0)
Back to top