Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 491 for heal (0.04 sec)

  1. platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt

    #       https://github.com/gradle/gradle/blob/HEAD/platforms/jvm/plugins-application/src/main/resources/org/gradle/api/internal/plugins/unixStartScript.txt
    #       within the Gradle project.
    #<% /*
    #       ... and if you're reading this, this IS the template just mentioned.
    #
    #       This template is processed by
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 13:43:33 UTC 2024
    - 11K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    			QueueingHintFn: queueHintReturnQueue,
    		},
    	}
    	q := NewTestQueue(ctx, newDefaultQueueSort(), WithClock(c), WithQueueingHintMapPerProfile(m))
    	// To simulate the pod is failed in scheduling in the real world, Pop() the pod from activeQ before AddUnschedulableIfNotPresent()s below.
    	q.activeQ.Add(q.newQueuedPodInfo(unschedulablePodInfo.Pod))
    	if p, err := q.Pop(logger); err != nil || p.Pod != unschedulablePodInfo.Pod {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/crypto/cipher/gcm.go

    // original slice has sufficient capacity then no allocation is performed.
    func sliceForAppend(in []byte, n int) (head, tail []byte) {
    	if total := len(in) + n; cap(in) >= total {
    		head = in[:total]
    	} else {
    		head = make([]byte, total)
    		copy(head, in)
    	}
    	tail = head[len(in):]
    	return
    }
    
    // counterCrypt crypts in to out using g.cipher in counter mode.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 18:57:38 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  4. README.md

    ## Snapshots and Documentation
    
    Snapshots of Guava built from the `master` branch are available through Maven
    using version `HEAD-jre-SNAPSHOT`, or `HEAD-android-SNAPSHOT` for the Android
    flavor.
    
    -   Snapshot API Docs: [guava][guava-snapshot-api-docs]
    -   Snapshot API Diffs: [guava][guava-snapshot-api-diffs]
    
    ## Learn about Guava
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. platforms/software/version-control/src/test/groovy/org/gradle/vcs/git/internal/GitVersionControlSystemSpec.groovy

            def anotherSource = repo.workTree.file('dir/another.txt')
            anotherSource << 'Goodbye world!'
            c2 = repo.commit('Second Commit')
            repoHead = GitVersionRef.from(repo.head)
            repoSpec = new DefaultGitVersionControlSpec()
            repoSpec.url = repo.url
    
            submoduleRepo.workTree.file("foo.txt") << "hello from submodule"
            submoduleRepo.commit("initial commit")
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 13:11:16 UTC 2024
    - 8.4K bytes
    - Viewed (0)
  6. samples/bookinfo/src/productpage/templates/index.html

            </h3>
            {% autoescape false %}
            {{ serviceTable }}
            {% endautoescape %}
            <p>
                Click on one of the links below to auto generate a request to the backend as a real user or a tester
            </p>
            <ul>
                <li>
                    <a href="/productpage?u=normal" class="text-blue-500 hover:text-blue-600">Normal user</a>
                </li>
                <li>
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 28 14:48:01 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  7. hack/apidiff.sh

                      Default is the current working tree instead of a revision.
       -r <revision>: Report change in code added since this revision. Default is
                      the common base of origin/master and HEAD.
       [directory]:   Check one or more specific directory instead of everything.
    EOF
      exit 1
    }
    
    set -o errexit
    set -o nounset
    set -o pipefail
    
    KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/..
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 26 09:00:03 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  8. src/cmd/go/internal/fsys/fsys.go

    func (f fakeFile) Mode() fs.FileMode  { return f.real.Mode() }
    func (f fakeFile) ModTime() time.Time { return f.real.ModTime() }
    func (f fakeFile) IsDir() bool        { return f.real.IsDir() }
    func (f fakeFile) Sys() any           { return f.real.Sys() }
    
    func (f fakeFile) String() string {
    	return fs.FormatFileInfo(f)
    }
    
    // missingFile provides an fs.FileInfo for an overlaid file where the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 18:35:34 UTC 2024
    - 22.7K bytes
    - Viewed (0)
  9. platforms/native/language-native/src/main/java/org/gradle/language/cpp/internal/NativeDependencyCache.java

    import static org.gradle.nativeplatform.internal.modulemap.GenerateModuleMapFile.generateFile;
    
    /**
     * This is intended to be temporary, until more metadata can be published and the dependency resolution engine can deal with it. As such, it's not particularly performant or robust.
     */
    public class NativeDependencyCache implements Stoppable {
        private final PersistentCache cache;
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:49:50 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. src/reflect/value.go

    		return x
    	case Pointer:
    		ptr := v.ptr
    		if v.flag&flagIndir != 0 {
    			if v.typ().IfaceIndir() {
    				// This is a pointer to a not-in-heap object. ptr points to a uintptr
    				// in the heap. That uintptr is the address of a not-in-heap object.
    				// In general, pointers to not-in-heap objects can be total junk.
    				// But Elem() is asking to dereference it, so the user has asserted
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top