Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 64 for STRICT (0.52 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/customresource_handler.go

    					PrettySerializer: json.NewSerializer(json.DefaultMetaFactory, creator, typer, true),
    					StrictSerializer: json.NewSerializerWithOptions(json.DefaultMetaFactory, creator, typer, json.SerializerOptions{
    						Strict: true,
    					}),
    					StreamSerializer: &runtime.StreamSerializerInfo{
    						EncodesAsText: true,
    						Serializer:    json.NewSerializer(json.DefaultMetaFactory, creator, typer, false),
    						Framer:        json.Framer,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  2. cmd/batch-handlers.go

    	}
    
    	wk, err := workers.New(workerSize)
    	if err != nil {
    		// invalid worker size.
    		return err
    	}
    
    	walkQuorum := env.Get("_MINIO_BATCH_REPLICATION_WALK_QUORUM", "strict")
    	if walkQuorum == "" {
    		walkQuorum = "strict"
    	}
    
    	retryAttempts := ri.RetryAttempts
    	retry := false
    	for attempts := 1; attempts <= retryAttempts; attempts++ {
    		attempts := attempts
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/server/options/encryptionconfig/config_test.go

    	_, err = LoadEncryptionConfig(ctx, invalidConfigWithTypo, false, "")
    	if got, wantSubString := errString(err), `strict decoding error: unknown field "resources[0].providers[3].kms.pandas"`; !strings.Contains(got, wantSubString) {
    		t.Fatalf("should result in strict decode error while parsing configuration file %q:\ngot: %q\nwant substring: %q", invalidConfigWithTypo, got, wantSubString)
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 16 16:56:39 UTC 2024
    - 72.3K bytes
    - Viewed (0)
  4. platforms/software/ivy/src/integTest/groovy/org/gradle/api/publish/ivy/IvyPublishJavaIntegTest.groovy

            javaLibrary.assertPublishedAsJavaModule()
            javaLibrary.assertApiDependencies('org.test:dep1:X', 'org.test:dep2:X')
        }
    
        def "can publish java-library with strict and prefer dependencies"() {
            requiresExternalDependencies = true
    
            given:
            createBuildScripts("""
    
                dependencies {
                    api("org.springframework:spring-core") {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 15 16:36:23 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  5. tests/integration/pilot/testdata/upgrade/1.6.11-install.yaml.tar

    proxyAdminPort: 15000 proxyMetadata: DNS_AGENT: "" serviceCluster: istio-proxy tracing: zipkin: address: zipkin.istio-system:9411 disableMixerHttpRepo: true disablePolicyChecks: true enablePrometheusMerg: false ingressClass: istio ingressControllerMod: STRICT ingressService: istio-ingressgateway protocolDetectionTim: 100ms reportBatchMaxEntrie: 100 reportBatchMaxTime: 1s sdsUdsPath: unix:/etc/istio/proxy/SDS trustDomain: cluster.local trustDomainAliases: null --- apiVersion: apps/v1 kind: Deployment metadata:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 50K bytes
    - Viewed (0)
  6. operator/pkg/apis/istio/v1alpha1/values_types.proto

      // If empty, node-port is assumed.
      //
      // Allowed values: node-port, istio-ingressgateway, ingress
      string ingressService = 1;
    
      ingressControllerMode ingressControllerMode = 2;
      // If mode is STRICT, this value must be set on "kubernetes.io/ingress.class" annotation to activate.
      string ingressClass = 3;
    }
    
    // Mode for the ingress controller.
    enum ingressControllerMode {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jun 03 01:55:05 UTC 2024
    - 57.2K bytes
    - Viewed (0)
  7. src/cmd/go/internal/modload/buildlist.go

    				switch f {
    				case "lazymod=log":
    					debug.PrintStack()
    					fmt.Fprintf(os.Stderr, "go: read full module graph.\n")
    				case "lazymod=strict":
    					debug.PrintStack()
    					base.Fatalf("go: read full module graph (forbidden by GODEBUG=lazymod=strict).")
    				}
    			}
    		})
    	}
    
    	var graphRoots []module.Version
    	if inWorkspaceMode() {
    		graphRoots = roots
    	} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool.go

    						disks = newDisks
    						askDisks = 1
    					} else {
    						// If we did not find suitable disks, perform strict quorum listing
    						// as no disk agrees on quorum anymore.
    						askDisks = getListQuorum("strict", set.setDriveCount)
    					}
    				}
    
    				// Special case: ask all disks if the drive count is 4
    				if set.setDriveCount == 4 || askDisks > len(disks) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  9. pilot/pkg/networking/core/cluster_tls_test.go

    				SubjectAltNames:   []string{"custom.foo.com"},
    				Sni:               "custom.foo.com",
    			},
    			userSupplied,
    		},
    		{
    			"Auto fill nil settings when mTLS nil for internal service in strict mode",
    			nil,
    			[]string{"spiffe://foo/serviceaccount/1"},
    			"foo.com",
    			&model.Proxy{Metadata: &model.NodeMetadata{}},
    			true, false, model.MTLSStrict,
    			&networking.ClientTLSSettings{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 03:53:05 UTC 2024
    - 60.9K bytes
    - Viewed (0)
  10. src/regexp/testdata/testregex.c

     * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
     * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
     * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
     * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
     * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
     */
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
Back to top