Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for NotExists (0.14 sec)

  1. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r32/ResolutionExceptionSerializableCrossVersionSpec.groovy

        def "serializes exception when dependencies aren't resolved"() {
            when:
            file('build.gradle') << """
    dependencies {
        ${implementationConfiguration} 'commons-lang:commons-lang:10.0-NOTEXISTS'
    }
    """
            def customModel = withConnection { connection ->
                connection.model(CustomArtifactModel).get()
            }
            def failure = customModel.failure
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. src/main/java/org/codelibs/fess/helper/ThemeHelper.java

                throw new ThemeException("Theme name is empty: " + artifact);
            }
            return themeName;
        }
    
        protected void closeQuietly(final Path dir) {
            if (Files.notExists(dir)) {
                if (logger.isDebugEnabled()) {
                    logger.debug("{} does not exists.", dir);
                }
                return;
            }
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. src/cmd/vendor/rsc.io/markdown/entity.go

    	"&NotDoubleVerticalBar;":            "\u2226",
    	"&NotElement;":                      "\u2209",
    	"&NotEqual;":                        "\u2260",
    	"&NotEqualTilde;":                   "\u2242\u0338",
    	"&NotExists;":                       "\u2204",
    	"&NotGreater;":                      "\u226f",
    	"&NotGreaterEqual;":                 "\u2271",
    	"&NotGreaterFullEqual;":             "\u2267\u0338",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 101K bytes
    - Viewed (0)
Back to top