Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for NotExists (3.35 sec)

  1. subprojects/core/src/main/java/org/gradle/internal/classpath/declarations/NioFileInterceptors.java

            Path path,
            @VarargParameter LinkOption[] options,
            @CallerClassName String consumer
        ) {
            tryReportFileSystemEntryObserved(path, consumer);
            return Files.notExists(path, options);
        }
    
        // TODO: handle varargs in Groovy
        @InterceptCalls
        @StaticMethod(ofClass = Files.class)
        public static SeekableByteChannel intercept_newByteChannel(
            Path path,
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 12:34:20 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. tests/integration/security/filebased_tls_origination/egress_gateway_origination_test.go

    		validator := structpath.ForProto(cfg)
    		for _, port := range dest.Config().Ports {
    			clusterName := clusterName(dest, port)
    			// Ensure that we have an outbound configuration for the target port.
    			err := validator.NotExists("{.configs[*].dynamicActiveClusters[?(@.cluster.Name == '%s')]}", clusterName).Check()
    			if err != nil {
    				return false, err
    			}
    		}
    
    		return true, nil
    	}
    
    	workloads, _ := c.Workloads()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. pkg/scheduler/testing/wrappers.go

    	labelSelector := MakeLabelSelector().Exists(labelKey).Obj()
    	p.PodAntiAffinity(topologyKey, labelSelector, kind)
    	return p
    }
    
    // PodAffinityNotExists creates a PodAffinity with the operator "NotExists"
    // and injects into the inner pod.
    func (p *PodWrapper) PodAffinityNotExists(labelKey, topologyKey string, kind PodAffinityKind) *PodWrapper {
    	labelSelector := MakeLabelSelector().NotExist(labelKey).Obj()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 27 07:57:10 UTC 2024
    - 42.1K bytes
    - Viewed (0)
Back to top