Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 48 for validate0 (0.19 sec)

  1. maven-model-builder/src/test/resources/dag.txt

    	quarkus/extensions/reactive-routes/runtime/pom.xml
    	quarkus/extensions/hibernate-validator/spi/pom.xml
    	quarkus/extensions/jsonp/deployment/pom.xml
    	quarkus/extensions/security/deployment/pom.xml
    	quarkus/extensions/elytron-security-properties-file/deployment/pom.xml
    	quarkus/extensions/hibernate-validator/deployment/pom.xml
    	quarkus/test-framework/junit5-internal/pom.xml
    	quarkus/extensions/security/test-utils/pom.xml
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jan 15 16:49:26 UTC 2024
    - 224K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

        clear-kubeconfig
      else
      # If some master replicas remain: cluster has been changed, we need to re-validate it.
        echo "... calling validate-cluster" >&2
        # Override errexit
        (validate-cluster) && validate_result="$?" || validate_result="$?"
    
        # We have two different failure modes from validate cluster:
        # - 1: fatal error - cluster won't be working correctly
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller_test.go

    					t.Error("Syncing jobs expected to return error when reached the podControl limit")
    				}
    			} else if err != nil {
    				t.Errorf("Unexpected error when syncing jobs: %v", err)
    			}
    			// validate created/deleted pods
    			if int32(len(fakePodControl.Templates)) != tc.expectedCreations {
    				t.Errorf("Unexpected number of creates.  Expected %d, saw %d\n", tc.expectedCreations, len(fakePodControl.Templates))
    			}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  4. pkg/controller/podautoscaler/horizontal_test.go

    			// Actually, such an invalid type should be validated in the kube-apiserver and invalid metric type shouldn't be recorded.
    			"CheddarCheese": monitor.ActionLabelNone,
    		},
    		expectedReportedMetricComputationErrorLabels: map[autoscalingv2.MetricSourceType]monitor.ErrorLabel{
    			autoscalingv2.ResourceMetricSourceType: monitor.ErrorLabelNone,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  5. pilot/pkg/networking/core/cluster_builder_test.go

    			}
    			if len(tt.expectedSubsetClusters) > 0 {
    				compareClusters(t, tt.expectedSubsetClusters[0], subsetClusters[0])
    			}
    			// Validate that use client protocol configures cluster correctly.
    			if tt.destRule != nil && tt.destRule.TrafficPolicy != nil && tt.destRule.TrafficPolicy.GetConnectionPool().GetHttp().GetUseClientProtocol() {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 110.4K bytes
    - Viewed (0)
  6. go.sum

    github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
    github.com/envoyproxy/protoc-gen-validate v1.0.4 h1:gVPz/FMfvh57HdSJQyvBtF00j8JU4zdyUgIUNhlgg0A=
    github.com/envoyproxy/protoc-gen-validate v1.0.4/go.mod h1:qys6tmnRsYrQqIhm2bvKZH4Blx/1gTIZ2UKVY1M+Yew=
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 15:32:28 UTC 2024
    - 101.6K bytes
    - Viewed (0)
  7. cmd/site-replication.go

    			return madmin.ReplicateAddStatus{}, errSRInvalidRequest(fmt.Errorf("all existing replicated sites must be specified - missing %s", strings.Join(diffSlc, " ")))
    		}
    	}
    
    	// validate that all clusters are using the same IDP settings.
    	err = c.validateIDPSettings(ctx, sites)
    	if err != nil {
    		return madmin.ReplicateAddStatus{}, err
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 184.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/ir/tfl_ops.td

        if the maximum is empty for a given segment ID i,
        it outputs the smallest possible value for the specific numeric type,
        output[i] = numeric_limits::lowest().
        Note the values of segment_ids are always validated to be less than
        num_segments and an error is thrown for out-of-bound indices.
      }];
    
      let arguments = (ins
        TFL_TensorOf<[F32, I32]>:$input,
        TFL_I32Tensor:$segment_ids,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jun 06 19:09:08 UTC 2024
    - 186K bytes
    - Viewed (0)
  9. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    type: array issuer: description: Identifies the issuer that issued the JWT. type: string jwks: description: JSON Web Key Set of public keys to validate signature of the JWT. type: string jwks_uri: description: URL of the provider's public key set to validate signature of the JWT. type: string jwksUri: description: URL of the provider's public key set to validate signature of the JWT. type: string outputClaimToHeaders: description: This field specifies a list of operations to copy the claim to HTTP headers...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  10. src/database/sql/sql.go

    // helper function that returns a [*DB]. No database drivers are included
    // in the Go standard library. See https://golang.org/s/sqldrivers for
    // a list of third-party drivers.
    //
    // OpenDB may just validate its arguments without creating a connection
    // to the database. To verify that the data source name is valid, call
    // [DB.Ping].
    //
    // The returned [DB] is safe for concurrent use by multiple goroutines
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:53 UTC 2024
    - 103.6K bytes
    - Viewed (0)
Back to top