Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 1,694 for findIn (0.24 sec)

  1. src/strings/export_test.go

    			}
    		}
    	}
    	return
    }
    
    func StringFind(pattern, text string) int {
    	return makeStringFinder(pattern).next(text)
    }
    
    func DumpTables(pattern string) ([]int, []int) {
    	finder := makeStringFinder(pattern)
    	return finder.badCharSkip[:], finder.goodSuffixSkip
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 13 18:45:54 UTC 2021
    - 1.1K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/internal/impl/DefaultLifecycleRegistry.java

        }
    
        @Override
        public Optional<Lifecycle> lookup(String id) {
            return stream().filter(lf -> Objects.equals(id, lf.id())).findAny();
        }
    
        @Named
        @Singleton
        public static class LifecycleWrapperProvider implements LifecycleProvider {
            private final PlexusContainer container;
    
            @Inject
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed May 22 13:45:13 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  3. docs/de/docs/alternatives.md

    !!! check "Inspirierte **FastAPI**"
        Wege zu finden, eine großartige Performanz zu erzielen.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 20:26:28 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/optimizing-performance/build-cache/build_cache_debugging.adoc

    This chapter is about finding out why a cache miss happened.
    If you have a cache hit which you didn't expect we suggest to declare whatever change you expected to trigger the cache miss as an input to the task.
    
    [[finding_problems]]
    == Finding problems with task output caching
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 15K bytes
    - Viewed (0)
  5. pkg/api/v1/pod/util_test.go

    		t.Logf("Missing expected secret paths:\n%s", strings.Join(sets.List[string](missingPaths), "\n"))
    		t.Error("Missing expected secret paths. Verify VisitPodSecretNames() is correctly finding the missing paths, then correct expectedSecretPaths")
    	}
    	if extraPaths := secretPaths.Difference(expectedSecretPaths); len(extraPaths) > 0 {
    		t.Logf("Extra secret paths:\n%s", strings.Join(sets.List(extraPaths), "\n"))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Sep 25 11:04:08 UTC 2023
    - 32.1K bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/embed.txt

    # all still ignores .git and symlinks
    cp x.go3 x.go
    ! go build -x
    stderr '^x.go:5:12: pattern all:t: cannot embed directory t: contains no embeddable files$'
    
    # all finds dot files and underscore files
    cp x.txt t/.x.txt
    go build -x
    rm t/.x.txt
    cp x.txt t/_x.txt
    go build -x
    
    -- x.go --
    package p
    
    import "embed"
    
    //go:embed x*t*t
    var X embed.FS
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 09 18:03:59 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  7. pkg/scheduler/apis/config/types.go

    	// the cluster. This helps improve scheduler's performance. Scheduler always tries to find
    	// at least "minFeasibleNodesToFind" feasible nodes no matter what the value of this flag is.
    	// Example: if the cluster size is 500 nodes and the value of this flag is 30,
    	// then scheduler stops finding further feasible nodes once it finds 150 feasible ones.
    	// When the value is 0, default percentage (5%--50% based on the size of the cluster) of the
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 19 18:47:23 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  8. src/cmd/cover/func.go

    		if err == io.EOF {
    			break
    		}
    		if err != nil {
    			return nil, fmt.Errorf("decoding go list json: %v", err)
    		}
    		pkgs[pkg.ImportPath] = &pkg
    	}
    	return pkgs, nil
    }
    
    // findFile finds the location of the named file in GOROOT, GOPATH etc.
    func findFile(pkgs map[string]*Pkg, file string) (string, error) {
    	if strings.HasPrefix(file, ".") || filepath.IsAbs(file) {
    		// Relative or absolute path.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 17:49:12 UTC 2022
    - 6.3K bytes
    - Viewed (0)
  9. fess-crawler/src/test/resources/extractor/eml/sample4.eml

    Mensch  zu bekommen. Die Führung geht damit verbundenen Fragen im Kontext der 
    Ausstellung nach. 
    Folgendes Programm ist geplant:
    15.45 Treffen (pünktlich!) im Museum Berggruen an der Kasse , Schloßstraße 1, 14059 Berlin.
    Die Führung findet ausschließlich in deutscher Sprache statt und dauert ca. 2 Stunden.
    Die Eigenbeteiligung beträgt 3,-- €/Person (incl. Eintritt und Führung)
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Jan 07 09:15:11 UTC 2018
    - 681K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/rsc.io_sampler_v1.2.0.txt

    		}
    		tag := language.Make(f[1])
    		tags = append(tags, tag)
    		t.byTag[tag.String()] = f[2]
    	}
    	t.matcher = language.NewMatcher(tags)
    	return t
    }
    
    // find finds the text to use for the given language tag preferences.
    func (t *text) find(prefs []language.Tag) string {
    	tag, _, _ := t.matcher.Match(prefs...)
    	s := t.byTag[tag.String()]
    	if strings.HasPrefix(s, "RTL ") {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 12 20:46:50 UTC 2018
    - 3.2K bytes
    - Viewed (0)
Back to top