Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 224 for Constraint (0.15 sec)

  1. platforms/jvm/language-java/src/main/java/org/gradle/external/javadoc/StandardJavadocDocletOptions.java

         * which can be specified by packageListLoc (typically local). Thus, if extdocURL is accessible only on the World Wide Web,
         * -linkoffline removes the constraint that the Javadoc tool have a web connection when generating the documentation.
         * <p>
         * Another use is as a "hack" to update docs: After you have run javadoc on a full set of packages,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 43.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    		return withRev, apierrors.NewBadRequest(fmt.Sprintf("invalid resource version: %v", err))
    	}
    
    	switch opts.ResourceVersionMatch {
    	case metav1.ResourceVersionMatchNotOlderThan:
    		// The not older than constraint is checked after we get a response from etcd,
    		// and returnedRV is then set to the revision we get from the etcd response.
    	case metav1.ResourceVersionMatchExact:
    		withRev = int64(parsedRV)
    	case "": // legacy case
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  3. src/go/types/call.go

    			check.expr(nil, &x, e)
    			xlist[i] = &x
    		}
    	}
    	return
    }
    
    // genericExprList is like exprList but result operands may be uninstantiated or partially
    // instantiated generic functions (where constraint information is insufficient to infer
    // the missing type arguments) for Go 1.21 and later.
    // For each non-generic or uninstantiated generic operand, the corresponding targsList and
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 33.5K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/tools/go/analysis/passes/printf/printf.go

    	if _, ok := typ.Underlying().(*types.Interface); ok {
    		// Don't assume type parameters could be formatters. With the greater
    		// expressiveness of constraint interface syntax we expect more type safety
    		// when using type parameters.
    		if !typeparams.IsTypeParam(typ) {
    			return true
    		}
    	}
    	obj, _, _ := types.LookupFieldOrMethod(typ, false, nil, "Format")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 32.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Task.java

         */
        @Internal
        Property<Duration> getTimeout();
    
        /**
         * Registers a {@link BuildService} that is used by this task so
         * {@link BuildServiceRegistration#getMaxParallelUsages() its constraint on parallel execution} can be honored.
         *
         * @param service The service provider.
         * @since 6.1
         */
        void usesService(Provider<? extends BuildService<?>> service);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 17:25:12 UTC 2024
    - 31.6K bytes
    - Viewed (0)
  6. pkg/registry/core/pod/storage/eviction_test.go

    			podPhase:            api.PodPending,
    			podName:             "t4",
    			expectedDeleteCount: EvictionsRetry.Steps,
    		},
    		{
    			name: "pod pending, always conflict on delete, user provided ResourceVersion constraint",
    			pdbs: []runtime.Object{&policyv1.PodDisruptionBudget{
    				ObjectMeta: metav1.ObjectMeta{Name: "foo", Namespace: "default"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:26:37 UTC 2024
    - 40K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/tensorflow/passes/replace_cast_hacks_with_tf_xla_ops.cc

      if (!value_type.hasRank()) return false;
      if (!value_type.getElementType().isInteger(integer_width)) return false;
    
      return true;
    }
    
    // Constraint to check:
    // 1. The einsum has two inputs and one output.
    // 2. The einsum is not created by the convert function itself.
    // 3. Both inputs are int32 tensor.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 47.1K bytes
    - Viewed (0)
  8. src/net/http/client.go

    		// guarantee that Body is always non-nil, even on responses without a body
    		// or responses with a zero-length body.” Unfortunately, we didn't document
    		// that same constraint for arbitrary RoundTripper implementations, and
    		// RoundTripper implementations in the wild (mostly in tests) assume that
    		// they can use a nil Body to mean an empty one (similar to Request.Body).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 06:06:11 UTC 2024
    - 33.7K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_5.adoc

    Forcing dependency versions using `force = true` on a first-level dependency has been deprecated.
    
    Force has both a semantic and ordering issue which can be avoided by using a <<rich_versions.adoc#rich-version-constraints, strict version constraint>>.
    
    ==== Search upwards related APIs in `StartParameter` have been deprecated
    
    In Gradle 5.0, we removed the `--no-search-upward` CLI parameter.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 03:01:48 UTC 2024
    - 47.5K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_6.adoc

    - your build actually provides `com.mycompany:some-module` in a higher version
    
    Previous Gradle releases would succeed, selecting the project dependency despite the strict constraint.
    Starting from Gradle 7, this will trigger a dependency resolution failure.
    
    See https://github.com/gradle/gradle/issues/16706[this issue] for more context.
    
    === Deprecations
    
    [[missing_dependencies]]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 15:00:23 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top