Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 465 for SUCCEED (0.09 sec)

  1. cmd/kubeadm/app/util/pubkeypin/pubkeypin_test.go

    		t.Error("expected test cert to not be allowed (yet)")
    		return
    	}
    
    	err = s.Allow(strings.ToUpper(expectedHash))
    	if err != nil || s.Empty() {
    		t.Error("expected allowing uppercase expectedHash to succeed")
    		return
    	}
    
    	err = s.CheckAny([]*x509.Certificate{testCert(t, testCertPEM)})
    	if err != nil {
    		t.Errorf("expected test cert to be allowed, but got back: %v", err)
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 13 11:38:39 UTC 2021
    - 5.9K bytes
    - Viewed (0)
  2. pkg/kubelet/prober/worker_test.go

    		laterStatus.ContainerStatuses[0].State.Running.StartedAt.Time =
    			time.Now().Add(-100 * time.Second)
    		m.statusManager.SetPodStatus(w.pod, laterStatus)
    
    		// Second call should succeed (already waited).
    		expectContinue(t, w, w.doProbe(ctx), "after initial delay")
    		expectResult(t, w, results.Success, "after initial delay")
    	}
    }
    
    func TestFailureThreshold(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 07 23:48:10 UTC 2023
    - 16.1K bytes
    - Viewed (0)
  3. src/cmd/go/testdata/script/get_insecure.txt

    cd $WORK/m
    env GO111MODULE=on
    env GOPROXY=''
    
    # Modules: Try go get -d of HTTP-only repo (should fail).
    ! go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
    
    # Modules: Try again with GOINSECURE (should succeed).
    env GOINSECURE=insecure.go-get-issue-15410.appspot.com
    env GONOSUMDB=insecure.go-get-issue-15410.appspot.com
    go get -d insecure.go-get-issue-15410.appspot.com/pkg/p
    
    # Modules: Try updating without GOINSECURE (should fail).
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 16 14:41:02 UTC 2023
    - 937 bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_get_issue47650.txt

    go get -x vcs-test.golang.org/git/issue47650.git/cmd/issue47650@21535ef346c3
    stderr '^go: added vcs-test.golang.org/git/issue47650.git v0.1.1-0.20210811175200-21535ef346c3$'
    
    # Explicitly requesting that same version should succeed, fetching additional
    # history for the requested commit as needed in order to validate the
    # pseudo-version base.
    go clean -modcache
    cp go.mod.orig go.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 11 22:29:11 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. src/cmd/go/testdata/script/build_git_missing_tree.txt

    exec git log --pretty=%T
    cmp stdout $WORK/.git-trees
    
    rm .git/objects/66/400c89b45cc96da36d232844dbf9ea5daa6bcf
    
    # Build the module, which should succeed
    go build -v -buildvcs=true -o test
    go version -m test
    stdout '^\tbuild\tvcs.revision=fe3c8204d2332a731166269932dd23760c1b576a$'
    
    -- $WORK/repo/go.mod --
    module github.com/golang/issue65339
    
    go 1.20
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:18 UTC 2024
    - 1.3K bytes
    - Viewed (0)
  6. src/runtime/testdata/testwinsignal/main.go

    	// which caused Windows to terminate the program before the goroutine
    	// that received the SIGTERM had a chance to actually clean up.)
    	time.Sleep(time.Second)
    
    	// Print the signal's name: "terminated" makes the test succeed.
    	fmt.Println(sig)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 18 07:37:53 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  7. src/os/wait_waitid.go

    //go:build linux
    
    package os
    
    import (
    	"runtime"
    	"syscall"
    	"unsafe"
    )
    
    const _P_PID = 1
    
    // blockUntilWaitable attempts to block until a call to p.Wait will
    // succeed immediately, and reports whether it has done so.
    // It does not actually call p.Wait.
    func (p *Process) blockUntilWaitable() (bool, error) {
    	// The waitid system call expects a pointer to a siginfo_t,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:27:57 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  8. src/cmd/go/testdata/script/mod_convert_git.txt

    # However, we should suggest 'go mod init' if we can find an alternate config file.
    cd $WORK/test/x
    ! go list .
    stderr 'found .git/config in .*[/\\]test'
    stderr '\s*cd \.\. && go mod init'
    
    # The command we suggested should succeed.
    cd ..
    go mod init
    go list -m all
    stdout '^m$'
    
    # We should not suggest creating a go.mod file in $GOROOT, even though there may be a .git/config there.
    cd $GOROOT
    ! go list .
    ! stderr 'go mod init'
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 13 20:43:12 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/tools/internal/typeparams/common.go

    		return types.AssignableTo(V, T)
    	}
    
    	// V and T have the same (non-zero) number of type params. Instantiate both
    	// with the type parameters of V. This must always succeed for V, and will
    	// succeed for T if and only if the type set of each type parameter of V is a
    	// subset of the type set of the corresponding type parameter of T, meaning
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 02:38:00 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  10. tensorflow/__init__.py

    app.flags = flags
    
    # These symbols appear because we import the python package which
    # in turn imports from tensorflow.core and tensorflow.python. They
    # must come from this module. So python adds these symbols for the
    # resolution to succeed.
    # pylint: disable=undefined-variable
    del python
    del core
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 28 21:37:05 UTC 2021
    - 1.4K bytes
    - Viewed (0)
Back to top