Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 336 for Enforce (0.13 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategySpec.groovy

        def "allows setting forced modules"() {
            expect:
            strategy.forcedModules.empty
    
            when:
            strategy.force 'org.foo:bar:1.0', 'org.foo:baz:2.0'
    
            then:
            def versions = strategy.forcedModules as List
            versions.size() == 2
    
            versions[0].group == 'org.foo'
            versions[0].name == 'bar'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 02:50:41 UTC 2024
    - 12.1K bytes
    - Viewed (0)
  2. operator/cmd/mesh/install.go

    	// SkipConfirmation determines whether the user is prompted for confirmation.
    	// If set to true, the user is not prompted and a Yes response is assumed in all cases.
    	SkipConfirmation bool
    	// Force proceeds even if there are validation errors
    	Force bool
    	// Verify after installation
    	Verify bool
    	// Set is a string with element format "path=value" where path is an IstioOperator path and the value is a
    	// value to set the node at that path to.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:35 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  3. plugin/pkg/admission/serviceaccount/admission_test.go

    										LocalObjectReference: api.LocalObjectReference{Name: "foo"},
    									},
    								},
    							},
    						},
    					},
    				},
    			},
    		},
    	}
    	// validate enforces restrictions on secret mounts when operation==create and subresource=='' or operation==update and subresource==ephemeralcontainers"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 12 17:49:30 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  4. maven-embedder/src/test/java/org/apache/maven/cli/MavenCliTest.java

                    Arguments.of(true, new String[] {"--force-interactive"}, false),
                    Arguments.of(true, new String[] {"--force-interactive", "--non-interactive"}, false),
                    Arguments.of(true, new String[] {"--force-interactive", "--batch-mode"}, false),
                    Arguments.of(true, new String[] {"--force-interactive", "--non-interactive", "--batch-mode"}, false),
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 28.3K bytes
    - Viewed (0)
  5. src/crypto/tls/boring_test.go

    	test(t, "VersionTLS10", VersionTLS10, "")
    	test(t, "VersionTLS11", VersionTLS11, "")
    	test(t, "VersionTLS12", VersionTLS12, "")
    	test(t, "VersionTLS13", VersionTLS13, "")
    
    	t.Run("fipstls", func(t *testing.T) {
    		fipstls.Force()
    		defer fipstls.Abandon()
    		test(t, "VersionTLS10", VersionTLS10, "supported versions")
    		test(t, "VersionTLS11", VersionTLS11, "supported versions")
    		test(t, "VersionTLS12", VersionTLS12, "")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  6. operator/cmd/mesh/uninstall.go

    	// skipConfirmation determines whether the user is prompted for confirmation.
    	// If set to true, the user is not prompted and a Yes response is assumed in all cases.
    	skipConfirmation bool
    	// force proceeds even if there are validation errors
    	force bool
    	// purge results in deletion of all Istio resources.
    	purge bool
    	// revision is the Istio control plane revision the command targets.
    	revision string
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 01:18:49 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  7. cmd/bucket-object-lock.go

    		if err != nil {
    			internalLogIf(ctx, err, logger.WarningKind)
    			return true
    		}
    		if ret.RetainUntilDate.After(t) {
    			return true
    		}
    	}
    	return false
    }
    
    // enforceRetentionBypassForDelete enforces whether an existing object under governance can be deleted
    // with governance bypass headers set in the request.
    // Objects under site wide WORM can never be overwritten.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 13.2K bytes
    - Viewed (0)
  8. internal/http/headers.go

    	AmzChecksumSHA256 = "x-amz-checksum-sha256"
    	AmzChecksumMode   = "x-amz-checksum-mode"
    
    	// Delete special flag to force delete a bucket or a prefix
    	MinIOForceDelete = "x-minio-force-delete"
    
    	// Create special flag to force create a bucket
    	MinIOForceCreate = "x-minio-force-create"
    
    	// Header indicates if the mtime should be preserved by client
    	MinIOSourceMTime = "x-minio-source-mtime"
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  9. pkg/controller/volume/attachdetach/reconciler/reconciler.go

    			if err != nil {
    				logger.Error(err, "Failed to get health of node", "node", klog.KRef("", string(attachedVolume.NodeName)))
    			}
    
    			// Force detach volumes from unhealthy nodes after maxWaitForUnmountDuration if force detach is enabled
    			// Ensure that the timeout condition checks this correctly so that the correct metric is updated below
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 22 21:02:38 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolutionstrategy/DefaultResolutionStrategy.java

        private static final NotationParser<Object, Set<ModuleVersionSelector>> FORCED_MODULES_PARSER = ModuleVersionSelectorParsers.multiParser("force()");
    
        private final Set<Object> forcedModules = new LinkedHashSet<>();
        private Set<ModuleVersionSelector> parsedForcedModules;
        private ConflictResolution conflictResolution = ConflictResolution.latest;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top