Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for NotExists (0.23 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. 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)
Back to top