Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 9 of 9 for NotExists (0.21 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. src/os/error_test.go

    		return s
    	}
    	return ""
    }
    
    func TestErrIsNotExist(t *testing.T) {
    	tmpDir := t.TempDir()
    	name := filepath.Join(tmpDir, "NotExists")
    	if s := testErrNotExist(t, name); s != "" {
    		t.Fatal(s)
    	}
    
    	name = filepath.Join(name, "NotExists2")
    	if s := testErrNotExist(t, name); s != "" {
    		t.Fatal(s)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 19 00:41:52 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  4. 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)
  5. pkg/test/util/structpath/instance.go

    		v, err := i.findValue(path)
    		if err != nil {
    			return err
    		}
    		if v == nil {
    			return fmt.Errorf("no entry exists at path: %v", path)
    		}
    		return nil
    	})
    }
    
    func (i *Instance) NotExists(path string, args ...any) *Instance {
    	path = fmt.Sprintf(path, args...)
    	return i.appendConstraint(func() error {
    		parser := jsonpath.New("path")
    		err := parser.Parse(i.fixPath(path))
    		if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 9.4K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. src/html/entity.go

    		"NotCupCap;":                       '\U0000226D',
    		"NotDoubleVerticalBar;":            '\U00002226',
    		"NotElement;":                      '\U00002209',
    		"NotEqual;":                        '\U00002260',
    		"NotExists;":                       '\U00002204',
    		"NotGreater;":                      '\U0000226F',
    		"NotGreaterEqual;":                 '\U00002271',
    		"NotGreaterLess;":                  '\U00002279',
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jul 31 22:10:54 UTC 2018
    - 114.3K bytes
    - Viewed (0)
  9. 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