Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 68 for validate0 (0.21 sec)

  1. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            return this;
        }
    
        @Override
        public void addMutationValidator(MutationValidator validator) {
            childMutationValidators.add(validator);
        }
    
        @Override
        public void removeMutationValidator(MutationValidator validator) {
            childMutationValidators.remove(validator);
        }
    
        /**
         * Called when a parent configuration is mutated.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/admissionregistration/v1/types.go

    	// MatchResources declares what resources match this binding and will be validated by it.
    	// Note that this is intersected with the policy's matchConstraints, so only requests that are matched by the policy can be selected by this.
    	// If this is unset, all resources matched by the policy are validated by this binding
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 61.6K bytes
    - Viewed (0)
  3. cmd/kube-controller-manager/app/options/options_test.go

    func TestValidateControllersOptions(t *testing.T) {
    	testCases := []struct {
    		name                   string
    		expectErrors           bool
    		expectedErrorSubString string
    		options                interface {
    			Validate() []error
    		}
    	}{
    		{
    			name:                   "AttachDetachControllerOptions reconciler sync loop period less than one second",
    			expectErrors:           true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 02:59:09 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    	// It may have moved on and we can't be sure.
    	if oldStatus == go122.ProcSyscallAbandoned {
    		o.queue.push(Event{table: evt, ctx: curCtx, base: *ev})
    		return curCtx, true, nil
    	}
    
    	// Validate that the M we're stealing from is what we expect.
    	mid := ThreadID(ev.args[2]) // The M we're stealing from.
    
    	newCtx := curCtx
    	if mid == curCtx.M {
    		// We're stealing from ourselves. This behaves like a ProcStop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. cmd/xl-storage.go

    		return s.Delete(ctx, volume, path, DeleteOptions{
    			Recursive: false,
    			Immediate: false,
    		})
    	}
    
    	volumeDir, err := s.getVolDir(volume)
    	if err != nil {
    		return err
    	}
    
    	// Validate file path length, before reading.
    	filePath := pathJoin(volumeDir, path)
    	if err = checkPathLength(filePath); err != nil {
    		return err
    	}
    
    	var legacyJSON bool
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  6. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    		}
    		gotIPMap[svc.AutoAllocatedIPv4Address] = svc.Hostname.String()
    		// Validate that IP address is valid.
    		ip := net.ParseIP(svc.AutoAllocatedIPv4Address)
    		if ip == nil {
    			t.Errorf("invalid IP address %s : %s", svc.AutoAllocatedIPv4Address, svc.Hostname.String())
    		}
    		// Validate that IP address is in the expected range.
    		_, subnet, _ := net.ParseCIDR("240.240.0.0/16")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  7. cmd/kubelet/app/server.go

    				return fmt.Errorf("failed to set feature gates from initial flags-based config: %w", err)
    			}
    
    			// validate the initial KubeletFlags
    			if err := options.ValidateKubeletFlags(kubeletFlags); err != nil {
    				return fmt.Errorf("failed to validate kubelet flags: %w", err)
    			}
    
    			if cleanFlagSet.Changed("pod-infra-container-image") {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  8. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelBuilder.java

            // phase 1
            DefaultModelBuilderResult result = new DefaultModelBuilderResult();
    
            DefaultModelProblemCollector problems = new DefaultModelProblemCollector(result);
    
            // read and validate raw model
            Model fileModel = readFileModel(request, problems);
            result.setFileModel(fileModel);
    
            Model activatedFileModel = activateFileModel(fileModel, request, result, problems);
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Jun 07 07:31:02 UTC 2024
    - 61.9K bytes
    - Viewed (0)
  9. tests/integration/ambient/baseline_test.go

    								"IngressIp":       ip,
    								"IngressHttpPort": ports[i],
    							})).
    							Run(func(t framework.TestContext, from echo.Instance, to echo.Target) {
    								// TODO validate L7 processing/some headers indicating we reach the svc we wanted
    								from.CallOrFail(t, echo.CallOptions{
    									Address: "111.111.222.222",
    									Port:    to.PortForName("http"),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/push_context_test.go

    								t.Errorf("Updated Envoy filter %s/%s did not exist", ns, ef.Name)
    							} else if reflect.DeepEqual(*previousVersion, ef) {
    								// Validate that the generated filter is different from the previous version.
    								t.Errorf("Envoy filter %s/%s was not updated", ns, ef.Name)
    							}
    							// Validate that the generated filter is the same as the one updated.
    							if !reflect.DeepEqual(ef, convertToEnvoyFilterWrapper(&cfg)) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun Apr 21 17:42:54 UTC 2024
    - 95.3K bytes
    - Viewed (0)
Back to top