Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 633 for specifiedFn (0.24 sec)

  1. cmd/typed-errors.go

    var errGroupDisabled = errors.New("Specified group is disabled")
    
    // error returned in IAM subsystem when policy doesn't exist.
    var errNoSuchPolicy = errors.New("Specified canned policy does not exist")
    
    // error returned when policy to be deleted is in use.
    var errPolicyInUse = errors.New("Specified policy is in use and cannot be deleted.")
    
    // error returned when more than a single policy is specified when only one is
    // expected.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:14:16 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  2. pkg/controller/job/success_policy_test.go

    		},
    		"rules.succeededIndexes is specified; succeededIndexes didn't match rules": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{0, 2}},
    			successPolicy: &batch.SuccessPolicy{
    				Rules: []batch.SuccessPolicyRule{{
    					SucceededIndexes: ptr.To("3"),
    				}},
    			},
    		},
    		"rules.succeededCount is specified; succeededIndexes matched rules": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. cmd/object-handlers-common.go

    	// since the specified time otherwise return 412 (precondition failed).
    	ifModifiedSinceHeader := r.Header.Get(xhttp.AmzCopySourceIfModifiedSince)
    	if ifModifiedSinceHeader != "" {
    		if givenTime, err := amztime.ParseHeader(ifModifiedSinceHeader); err == nil {
    			if !ifModifiedSince(objInfo.ModTime, givenTime) {
    				// If the object is not modified since the specified time.
    				writeHeaders()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:31:51 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  4. cni/pkg/install/cniconfig_test.go

    			chainedCNIPlugin: true,
    		},
    		{
    			name:              "specified existing CNI config file",
    			chainedCNIPlugin:  true,
    			specifiedConfName: "list.conflist",
    			expectedConfName:  "list.conflist",
    			existingConfFiles: []string{"bridge.conf", "list.conflist"},
    		},
    		{
    			name:              "specified existing CNI config file (.conf to .conflist)",
    			chainedCNIPlugin:  true,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  5. platforms/core-runtime/logging/src/main/java/org/gradle/util/TextUtil.java

        }
    
        /**
         * Converts all line separators in the specified string to the specified line separator.
         */
        @Nullable
        public static String convertLineSeparators(@Nullable String str, String sep) {
            logDeprecation();
            return str == null ? null : replaceLineSeparatorsOf(str, sep);
        }
    
        /**
         * Converts all line separators in the specified non-null string to the Unix line separator {@code \n}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  6. platforms/ide/tooling-api/src/main/java/org/gradle/tooling/internal/consumer/DistributionFactory.java

        /**
         * Returns the distribution installed in the specified directory.
         */
        public Distribution getDistribution(File gradleHomeDir) {
            return new InstalledDistribution(gradleHomeDir, "Gradle installation '" + gradleHomeDir + "'",
                "Gradle installation directory '" + gradleHomeDir + "'");
        }
    
        /**
         * Returns the distribution for the specified gradle version.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 05:58:56 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  7. pkg/kubelet/config/sources.go

    	"sync"
    
    	"k8s.io/apimachinery/pkg/util/sets"
    )
    
    // SourcesReadyFn is function that returns true if the specified sources have been seen.
    type SourcesReadyFn func(sourcesSeen sets.Set[string]) bool
    
    // SourcesReady tracks the set of configured sources seen by the kubelet.
    type SourcesReady interface {
    	// AddSource adds the specified source to the set of sources managed.
    	AddSource(source string)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 2K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/pruning/algorithm_test.go

         "foo": {
            "specified": {}
         }
      },
      "preservingAdditionalPropertiesKeyPruneValues": {
         "foo": {
            "specified": {}
         }
      }
    }
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 20:13:14 UTC 2024
    - 20.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/build-state/src/main/java/org/gradle/internal/buildprocess/execution/StartParamsValidatingActionExecutor.java

                    if (!startParameter.getProjectDir().exists()) {
                        throw new IllegalArgumentException(String.format("The specified project directory '%s' does not exist.", startParameter.getProjectDir()));
                    }
                    throw new IllegalArgumentException(String.format("The specified project directory '%s' is not a directory.", startParameter.getProjectDir()));
                }
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:51:37 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  10. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/TextUtil.java

        }
    
        /**
         * Converts all line separators in the specified string to the specified line separator.
         */
        @Nullable
        public static String convertLineSeparators(@Nullable String str, String sep) {
            return str == null ? null : replaceLineSeparatorsOf(str, sep);
        }
    
        /**
         * Converts all line separators in the specified non-null string to the Unix line separator {@code \n}.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 12.8K bytes
    - Viewed (0)
Back to top