Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 100 for forced (0.11 sec)

  1. cmd/bucket-handlers.go

    					return
    				}
    
    				if err = globalDNSConfig.Put(bucket); err != nil {
    					objectAPI.DeleteBucket(context.Background(), bucket, DeleteBucketOptions{
    						Force:      true,
    						SRDeleteOp: getSRBucketDeleteOp(globalSiteReplicationSys.isEnabled()),
    					})
    					writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    					return
    				}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Jun 14 13:28:35 UTC 2024
    - 61.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1beta1/generated.proto

      // validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
      // If a validation evaluates to false it is always enforced according to these actions.
      //
      // Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according
      // to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  3. src/cmd/internal/testdir/testdir_test.go

    		}
    		errors[line][msg] = true
    	}
    	// Add new errors.
    	for line, errs := range errors {
    		var sorted []string
    		for e := range errs {
    			sorted = append(sorted, e)
    		}
    		sort.Strings(sorted)
    		lines[line] += " // ERROR"
    		for _, e := range sorted {
    			lines[line] += fmt.Sprintf(` "%s$"`, e)
    		}
    	}
    	// Write new file.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 20:08:06 UTC 2024
    - 57.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/api/admissionregistration/v1/generated.proto

      // validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
      // If a validation evaluates to false it is always enforced according to these actions.
      //
      // Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according
      // to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. src/cmd/dist/test.go

    // combine configuration from goTest and tester flags.
    type goTest struct {
    	timeout  time.Duration // If non-zero, override timeout
    	short    bool          // If true, force -short
    	tags     []string      // Build tags
    	race     bool          // Force -race
    	bench    bool          // Run benchmarks (briefly), not tests.
    	runTests string        // Regexp of tests to run
    	cpu      string        // If non-empty, -cpu flag
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  6. tensorflow/compiler/jit/encapsulate_subgraphs_pass.cc

        const absl::flat_hash_set<string>& has_successors,
        const absl::flat_hash_map<string, absl::flat_hash_set<string>>& ancestors,
        std::vector<string>* sorted) {
      // The nodes are placed in 'sorted' in topological order.
      sorted->clear();
      // We don't use the standard DFS because we are not operating on Node*
      // objects.
      struct Work {
        string cluster;
        bool leave;
      };
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 51K bytes
    - Viewed (0)
  7. guava/src/com/google/common/collect/Sets.java

          return filter(unfiltered().tailSet(fromElement, inclusive), predicate);
        }
      }
    
      /**
       * Returns every possible list that can be formed by choosing one element from each of the given
       * sets in order; the "n-ary <a href="http://en.wikipedia.org/wiki/Cartesian_product">Cartesian
       * product</a>" of the sets. For example:
       *
       * <pre>{@code
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 78.8K bytes
    - Viewed (0)
  8. staging/src/k8s.io/api/admissionregistration/v1beta1/types.go

    	// validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
    	// If a validation evaluates to false it is always enforced according to these actions.
    	//
    	// Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according
    	// to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 29 20:14:19 UTC 2024
    - 60.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// validationActions declares how Validations of the referenced ValidatingAdmissionPolicy are enforced.
    	// If a validation evaluates to false it is always enforced according to these actions.
    	//
    	// Failures defined by the ValidatingAdmissionPolicy's FailurePolicy are enforced according
    	// to these actions only if the FailurePolicy is set to Fail, otherwise the failures are
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  10. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

            styleColor = commandLine.getOptionValue(COLOR, styleColor);
            if ("always".equals(styleColor) || "yes".equals(styleColor) || "force".equals(styleColor)) {
                MessageUtils.setColorEnabled(true);
            } else if ("never".equals(styleColor) || "no".equals(styleColor) || "none".equals(styleColor)) {
                MessageUtils.setColorEnabled(false);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
Back to top