Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 1,566 for Direct (0.14 sec)

  1. src/cmd/go/testdata/script/mod_get_fallback.txt

    env GO111MODULE=on
    
    [!net:golang.org] skip
    [!net:proxy.golang.org] skip
    
    env GOPROXY=https://proxy.golang.org,direct
    env GOSUMDB=off
    
    go get -x -v golang.org/x/tools/cmd/goimports
    stderr '# get https://proxy.golang.org/golang.org/x/tools/@v/list'
    ! stderr '# get https://golang.org'
    
    -- go.mod --
    module m
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 315 bytes
    - Viewed (0)
  2. src/cmd/go/testdata/script/mod_list_direct_work.txt

    # This is a regression test for issue #66789.
    
    # In this test, the workspace contains modules example.com/a and
    # example.com/b. Module example.com/a has a direct requirement
    # on rsc.io/sampler, and an indirect requirement on golang.org/x/text
    # through rsc.io/isampler. Module example.com/b has a direct
    # requirement on example.com/c which is incorrectly marked as indirect
    # in module example.com/b's go.mod file.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 16:04:44 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  3. src/main/java/jcifs/smb/SmbPipeHandleInternal.java

        /**
         * @param buf
         * @param off
         * @param length
         * @param direct
         * @return received bytes
         * @throws CIFSException
         * @throws IOException
         */
        int recv ( byte[] buf, int off, int length ) throws IOException;
    
    
        /**
         * @param buf
         * @param off
         * @param length
         * @param direct
         * @throws IOException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  4. src/cmd/vet/testdata/atomic/atomic.go

    // This file contains tests for the atomic checker.
    
    package atomic
    
    import "sync/atomic"
    
    func AtomicTests() {
    	x := uint64(1)
    	x = atomic.AddUint64(&x, 1) // ERROR "direct assignment to atomic value"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 20 15:46:42 UTC 2019
    - 364 bytes
    - Viewed (0)
  5. staging/src/k8s.io/apimachinery/pkg/api/errors/errors_test.go

    	testCases := []struct {
    		name        string
    		err         error
    		expectMatch bool
    	}{
    		{
    			name:        "Direct match via status reason",
    			err:         &StatusError{ErrStatus: metav1.Status{Reason: metav1.StatusReasonTooManyRequests}},
    			expectMatch: true,
    		},
    		{
    			name:        "Direct match via status code",
    			err:         &StatusError{ErrStatus: metav1.Status{Code: http.StatusTooManyRequests}},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Oct 28 07:31:28 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  6. src/main/java/jcifs/ACE.java

     * FILE_WRITE_DATA</tt>) and the target file has the following security
     * descriptor ACEs:
     * 
     * <pre>
     * Allow WNET\alice     0x001200A9  Direct
     * Allow Administrators 0x001F01FF  Inherited
     * Allow SYSTEM         0x001F01FF  Inherited
     * </pre>
     * 
     * the access check would fail because the direct ACE has an access mask
     * of <tt>0x001200A9</tt> which doesn't have the
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 6.5K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/mod/patch.example.com_indirect_v1.1.0.txt

    patch.example.com/indirect v1.1.0
    written by hand
    
    -- .mod --
    module patch.example.com/indirect
    -- .info --
    {"Version":"v1.1.0"}
    -- go.mod --
    module patch.example.com/indirect
    -- direct.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 209 bytes
    - Viewed (0)
  8. src/runtime/sema_test.go

    	for i := 0; i < iter; i++ {
    		if testSemaHandoff() {
    			ok++
    		}
    	}
    	// As long as two thirds of handoffs are direct, we
    	// consider the test successful. The scheduler is
    	// nondeterministic, so this test checks that we get the
    	// desired outcome in a significant majority of cases.
    	// The actual ratio of direct handoffs is much higher
    	// (>90%) but we use a lower threshold to minimize the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 21 19:37:22 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_vcs_missing.txt

    [exec:bzr] skip 'tests NOT having bzr'
    [!net:launchpad.net] skip
    
    env GO111MODULE=on
    env GOPROXY=direct
    
    cd empty
    ! go get launchpad.net/gocheck
    stderr '"bzr": executable file not found'
    cd ..
    
    # 1.11 used to give the cryptic error "cannot find module for path" here, but
    # only for a main package.
    cd main
    ! go build -mod=mod
    stderr '"bzr": executable file not found'
    cd ..
    
    -- empty/go.mod --
    module m
    -- main/go.mod --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 24 15:54:04 UTC 2023
    - 513 bytes
    - Viewed (0)
  10. src/cmd/go/testdata/mod/patch.example.com_indirect_v1.0.0.txt

    patch.example.com/indirect v1.0.0
    written by hand
    
    -- .mod --
    module patch.example.com/indirect
    -- .info --
    {"Version":"v1.0.0"}
    -- go.mod --
    module patch.example.com/indirect
    -- direct.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 16:37:07 UTC 2019
    - 209 bytes
    - Viewed (0)
Back to top