Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 114 for Validation (0.14 sec)

  1. pilot/pkg/networking/core/cluster.go

    			// this is a UDS endpoint. assign it as is
    			endpointAddress = ingressListener.DefaultEndpoint
    		} else if len(ingressListener.DefaultEndpoint) > 0 {
    			// parse the ip, port. Validation guarantees presence of :
    			hostIP, hostPort, hostErr := net.SplitHostPort(ingressListener.DefaultEndpoint)
    			if hostPort == "" || hostErr != nil {
    				continue
    			}
    			var err error
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 33K bytes
    - Viewed (0)
  2. cmd/server-main.go

    			}
    
    			bootLogIf(GlobalContext, err)
    		}
    
    		if !globalServerCtxt.StrictS3Compat {
    			warnings = append(warnings, color.YellowBold("- Strict AWS S3 compatible incoming PUT, POST content payload validation is turned off, caution is advised do not use in production"))
    		}
    	})
    	if globalActiveCred.Equal(auth.DefaultCredentials) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 15:12:57 UTC 2024
    - 34.5K bytes
    - Viewed (0)
  3. pkg/scheduler/framework/types.go

    	n.update(podInfo.Pod, 1)
    }
    
    // AddPod is a wrapper around AddPodInfo.
    func (n *NodeInfo) AddPod(pod *v1.Pod) {
    	// ignore this err since apiserver doesn't properly validate affinity terms
    	// and we can't fix the validation for backwards compatibility.
    	podInfo, _ := NewPodInfo(pod)
    	n.AddPodInfo(podInfo)
    }
    
    func podWithAffinity(p *v1.Pod) bool {
    	affinity := p.Spec.Affinity
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  4. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import org.gradle.api.logging.configuration.WarningMode;
    import org.gradle.integtests.fixtures.RepoScriptBlockUtil;
    import org.gradle.integtests.fixtures.daemon.DaemonLogsAnalyzer;
    import org.gradle.integtests.fixtures.validation.ValidationServicesFixture;
    import org.gradle.internal.ImmutableActionSet;
    import org.gradle.internal.MutableActionSet;
    import org.gradle.internal.UncheckedException;
    import org.gradle.internal.buildprocess.BuildProcessState;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  5. pilot/pkg/model/sidecar.go

    		if int(in.Port.Number) == port {
    			if in.GetConnectionPool() != nil {
    				return in.ConnectionPool
    			}
    		}
    	}
    
    	// if set, it'll be non-nil and have values (guaranteed by validation); or if unset it'll be nil
    	return sc.Sidecar.GetInboundConnectionPool()
    }
    
    // Services returns the list of services imported by this egress listener
    func (ilw *IstioEgressListenerWrapper) Services() []*Service {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 20:32:23 UTC 2024
    - 38.4K bytes
    - Viewed (0)
  6. src/cmd/go/internal/modload/init.go

    // with modules.
    func Init() {
    	if initialized {
    		return
    	}
    	initialized = true
    
    	// Keep in sync with WillBeEnabled. We perform extra validation here, and
    	// there are lots of diagnostics and side effects, so we can't use
    	// WillBeEnabled directly.
    	var mustUseModules bool
    	env := cfg.Getenv("GO111MODULE")
    	switch env {
    	default:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:36:30 UTC 2024
    - 69.8K bytes
    - Viewed (0)
  7. src/cmd/go/internal/work/exec.go

    	// That cache entry holds a validation description,
    	// which is of the form:
    	//
    	//	filename \x00 statinfo \x00
    	//	...
    	//	compiler id
    	//
    	// If os.Stat of each filename matches statinfo,
    	// then the entry is still valid, and we can use the
    	// compiler id without any further expense.
    	//
    	// Otherwise, we compute a new validation description
    	// and compiler id (below).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  8. cmd/object-api-utils.go

    	minioMetaTmpBucket = minioMetaBucket + "/tmp"
    	// MinIO tmp meta prefix for deleted objects.
    	minioMetaTmpDeletedBucket = minioMetaTmpBucket + "/.trash"
    
    	// DNS separator (period), used for bucket name validation.
    	dnsDelimiter = "."
    	// On compressed files bigger than this;
    	compReadAheadSize = 100 << 20
    	// Read this many buffers ahead.
    	compReadAheadBuffers = 5
    	// Size of each buffer.
    	compReadAheadBufSize = 1 << 20
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                        resource.getDirectory(),
                        resource);
            }
        }
    
        // ----------------------------------------------------------------------
        // Field validation
        // ----------------------------------------------------------------------
    
        private boolean validateCoordinateId(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/batch/v1/types.go

    	// The set of valid time zone names and the time zone offset is loaded from the system-wide time zone
    	// database by the API server during CronJob validation and the controller manager during execution.
    	// If no system-wide time zone database can be found a bundled version of the database is used instead.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 40.6K bytes
    - Viewed (0)
Back to top