Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 337 for forced (0.23 sec)

  1. src/cmd/compile/internal/syntax/parser.go

    // x can be written as name expr. The split only happens if expr is a type
    // element (per the isTypeElem predicate) or if force is set.
    // If x is just a name, the result is (name, nil). If the split succeeds,
    // the result is (name, expr). Otherwise the result is (nil, x).
    // Examples:
    //
    //	x           force    name    expr
    //	------------------------------------
    //	P*[]int     T/F      P       *[]int
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  2. src/cmd/test2json/main.go

    //
    // The Output field is set for Action == "output" and is a portion of the test's output
    // (standard output and standard error merged together). The output is
    // unmodified except that invalid UTF-8 output from a test is coerced
    // into valid UTF-8 by use of replacement characters. With that one exception,
    // the concatenation of the Output fields of all output events is the exact
    // output of the test execution.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  3. api/openapi-spec/v3/apis__batch__v1_openapi.json

                  "uniqueItems": true
                }
              },
              {
                "description": "Force is going to \"force\" Apply requests. It means user will re-acquire conflicting fields owned by other people. Force flag must be unset for non-apply patch requests.",
                "in": "query",
                "name": "force",
                "schema": {
                  "type": "boolean",
                  "uniqueItems": true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  4. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/cli/BuildActionsFactory.java

                    globalServices.get(UserInputReader.class),
                    System.in,
                    globalServices.get(BuildExecutor.class)
                ));
    
            // Force the user home services to be stopped first, the dependencies between the user home services and the global services are not preserved currently
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  5. android/guava/src/com/google/common/net/InetAddresses.java

       *
       * <p>NOTE: an IPv6 address coerced to an IPv4 address can only be used for such purposes as
       * rudimentary identification or indexing into a collection of real {@link InetAddress}es. They
       * cannot be used as real addresses for the purposes of network communication.
       *
       * @param ip {@link InetAddress} to convert
       * @return {@code int}, "coerced" if ip is not an IPv4 address
       * @since 7.0
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 24 16:44:05 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/apis/kubeadm/v1beta4/zz_generated.conversion.go

    	out.CleanupTmpDir = in.CleanupTmpDir
    	out.CertificatesDir = in.CertificatesDir
    	out.CRISocket = in.CRISocket
    	out.DryRun = in.DryRun
    	out.Force = in.Force
    	out.IgnorePreflightErrors = *(*[]string)(unsafe.Pointer(&in.IgnorePreflightErrors))
    	out.SkipPhases = *(*[]string)(unsafe.Pointer(&in.SkipPhases))
    	out.UnmountFlags = *(*[]string)(unsafe.Pointer(&in.UnmountFlags))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 08:34:39 UTC 2024
    - 61.4K bytes
    - Viewed (0)
  7. src/encoding/json/encode.go

    // Prior to Go 1.1, anonymous struct fields were ignored. To force ignoring of
    // an anonymous struct field in both current and earlier versions, give the field
    // a JSON tag of "-".
    //
    // Map values encode as JSON objects. The map's key type must either be a
    // string, an integer type, or implement [encoding.TextMarshaler]. The map keys
    // are sorted and used as JSON object keys by applying the following rules,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 00:18:55 UTC 2024
    - 36.2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	if v == nil {
    		return nil
    	}
    
    	allErrs := field.ErrorList{}
    
    	// We still unconditionally forbid XValidations in quantifiers, the only
    	// quantifier that is allowed to have right now is AllOf. This is due to
    	// implementation constraints - the SchemaValidator would need to become
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  9. pkg/kubelet/kubelet_pods.go

    	}
    
    	// TODO: this should be using the podWorker's pod store as authoritative, since
    	// the mirrorPod might still exist, the pod may have been force deleted but
    	// is still terminating (users should be able to view logs of force deleted static pods
    	// based on full name).
    	var podUID types.UID
    	pod, mirrorPod, wasMirror := kl.podManager.GetPodAndMirrorPod(pod)
    	if wasMirror {
    		if pod == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apiserver/pkg/server/healthz/healthz.go

    	case <-s.stopCh:
    		return fmt.Errorf("process is shutting down")
    	default:
    	}
    	return nil
    }
    
    func (i *informerSync) Check(_ *http.Request) error {
    	stopCh := make(chan struct{})
    	// Close stopCh to force checking if informers are synced now.
    	close(stopCh)
    
    	informersByStarted := make(map[bool][]string)
    	for informerType, started := range i.cacheSyncWaiter.WaitForCacheSync(stopCh) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 19:11:24 UTC 2024
    - 10.5K bytes
    - Viewed (0)
Back to top