Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for need (0.13 sec)

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

    	if s.hasOpenDefers && s.instrumentEnterExit {
    		// Skip doing open defers if we need to instrument function
    		// returns for the race detector, since we will not generate that
    		// code in the case of the extra deferreturn/ret segment.
    		s.hasOpenDefers = false
    	}
    	if s.hasOpenDefers {
    		// Similarly, skip if there are any heap-allocated result
    		// parameters that need to be copied back to their stack slots.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/transforms/legalize_tf.cc

        // In order to support these semantics, we need to know both the start index
        // and the shape of the input dimension.
        if (slice_size < 0 && (!is_constant_start || input_size < 0)) return false;
      }
      return true;
    }
    
    // TF slice size can be -1, which represents all elements from start_index to
    // the end. HLO slice size can't be -1. As such, we need to translate TF slice
    // size -1 to HLO slice size.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 291.8K bytes
    - Viewed (0)
  3. src/net/http/h2_bundle.go

    	if cc.t.t1 != nil {
    		return cc.t.t1.ResponseHeaderTimeout
    	}
    	// No way to do this (yet?) with just an http2.Transport. Probably
    	// no need. Request.Cancel this is the new way. We only need to support
    	// this for compatibility with the old http.Transport fields when
    	// we're doing transparent http2.
    	return 0
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 16:19:04 UTC 2024
    - 364.1K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/core/v1/generated.proto

      // operation will fail.  If not specified, a port will be allocated if this
      // Service requires one.  If this field is specified when creating a
      // Service which does not need it, creation will fail. This field will be
      // wiped when updating a Service to no longer need it (e.g. changing type
      // from NodePort to ClusterIP).
      // More info: https://kubernetes.io/docs/concepts/services-networking/service/#type-nodeport
      // +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. pkg/apis/core/types.go

    	// directly exposed to the container. This is generally used for system
    	// agents or other privileged things that are allowed to see the host
    	// machine. Most containers will NOT need this.
    	// ---
    	// TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not
    	// mount host directories as read/write.
    	// +optional
    	HostPath *HostPathVolumeSource
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  7. staging/src/k8s.io/api/core/v1/types.go

    	// used for system agents or other privileged things that are allowed
    	// to see the host machine. Most containers will NOT need this.
    	// More info: https://kubernetes.io/docs/concepts/storage/volumes#hostpath
    	// ---
    	// TODO(jonesdl) We need to restrict who can use host directory mounts and who can/can not
    	// mount host directories as read/write.
    	// +optional
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 390.8K bytes
    - Viewed (0)
  8. pkg/apis/core/validation/validation.go

    	}
    
    	// Only validate spec.
    	// All status fields are optional and can be updated later.
    	// That said, if specified, we need to ensure they are valid.
    	allErrs = append(allErrs, ValidateNodeResources(node)...)
    
    	// validate PodCIDRS only if we need to
    	if len(node.Spec.PodCIDRs) > 0 {
    		podCIDRsField := field.NewPath("spec", "podCIDRs")
    
    		// all PodCIDRs should be valid ones
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 349.5K bytes
    - Viewed (0)
  9. CHANGELOG/CHANGELOG-1.29.md

    - The `--bind-address` parameter in kube-proxy is misleading, no port is opened...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 03:42:38 UTC 2024
    - 324.5K bytes
    - Viewed (0)
  10. prow/config/calico.yaml

                    type: string
                  iptablesLockFilePath:
                    description: 'IptablesLockFilePath is the location of the iptables
                      lock file. You may need to change this if the lock file is not in
                      its standard location (for example if you have mapped it into Felix''s
                      container at a different path). [Default: /run/xtables.lock]'
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
Back to top