Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 7,166 for west (0.16 sec)

  1. okhttp-idna-mapping-table/src/main/resources/okhttp3/internal/idna/IdnaMappingTable.txt

    1F8AE..1F8AF  ; disallowed                             # NA   <reserved-1F8AE>..<reserved-1F8AF>
    1F8B0..1F8B1  ; valid                  ;      ; NV8    # 13.0 ARROW POINTING UPWARDS THEN NORTH WEST..ARROW POINTING RIGHTWARDS THEN CURVING SOUTH WEST
    1F8B2..1F8FF  ; disallowed                             # NA   <reserved-1F8B2>..<reserved-1F8FF>
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Feb 10 11:25:47 UTC 2024
    - 854.1K bytes
    - Viewed (0)
  2. cmd/lock-rest-client.go

    }
    
    // RLock calls read lock REST API.
    func (c *lockRESTClient) RLock(ctx context.Context, args dsync.LockArgs) (reply bool, err error) {
    	return c.call(ctx, lockRPCRLock, &args)
    }
    
    // Lock calls lock REST API.
    func (c *lockRESTClient) Lock(ctx context.Context, args dsync.LockArgs) (reply bool, err error) {
    	return c.call(ctx, lockRPCLock, &args)
    }
    
    // RUnlock calls read unlock REST API.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Nov 24 17:07:14 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  3. src/cmd/cgo/internal/test/test.go

    	}{
    		{"text", &C.text[0], C.ctext()},
    		{"data", &C.data[0], C.cdata()},
    	}
    	for _, test := range tests {
    		if test.a != test.b {
    			t.Errorf("%s: pointer mismatch: %v != %v", test.s, test.a, test.b)
    		}
    		if got := C.GoString(test.a); got != test.s {
    			t.Errorf("%s: points at %#v, want %#v", test.s, got, test.s)
    		}
    	}
    }
    
    // issues 8368 and 8441
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 48.5K bytes
    - Viewed (0)
  4. pkg/proxy/conntrack/conntrack.go

    	// protocol, which had been DNATted from origin to dest.
    	ClearEntriesForNAT(origin, dest string, protocol v1.Protocol) error
    
    	// ClearEntriesForPortNAT deletes conntrack entries for connections of the given
    	// protocol, which had been DNATted from the given port (on any IP) to dest.
    	ClearEntriesForPortNAT(dest string, port int, protocol v1.Protocol) error
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 15 18:09:05 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  5. hack/lib/test.sh

    red=$(tput setaf 1)
    green=$(tput setaf 2)
    readonly reset bold black red green
    
    kube::test::clear_all() {
      if kube::test::if_supports_resource "rc" ; then
        # shellcheck disable=SC2154
        # Disabling because "kube_flags" is set in a parent script
        kubectl delete "${kube_flags[@]}" rc --all --grace-period=0 --force
      fi
      if kube::test::if_supports_resource "pods" ; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jul 07 16:46:34 UTC 2023
    - 15.9K bytes
    - Viewed (0)
  6. platforms/enterprise/enterprise-plugin-performance/src/templates/project-with-source/Test.java

        @org.junit.Test
        public void testOne() throws Exception {
            if(Boolean.getBoolean("slowTasks")) {
                Thread.sleep(10);
            }
            for (int i = 0; i < 500; i++) {
                System.out.println("Some test output from ${testClassName}.testOne - " + i);
                System.err.println("Some test error  from ${testClassName}.testOne - " + i);
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 17 10:38:06 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  7. .github/workflows/test.yml

          - name: Install Dependencies
            if: steps.cache.outputs.cache-hit != 'true'
            run: pip install -r requirements-tests.txt
          - name: Install Pydantic v2
            run: pip install "pydantic>=2.0.2,<3.0.0"
          - name: Lint
            run: bash scripts/lint.sh
    
      test:
        runs-on: ubuntu-latest
        strategy:
          matrix:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 10 00:30:25 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. pkg/test/framework/test.go

    	// RequiresSingleNetwork ensures that clusters are in the same network
    	//
    	// Deprecated: Tests should not make assumptions regarding number of networks.
    	RequiresSingleNetwork() Test
    	// TopLevel marks a test as a "top-level test" meaning a container test that has many subtests.
    	// Resources created at this level will be in-scope for dumping when any descendant test fails.
    	TopLevel() Test
    	// Run the test, supplied as a lambda.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  9. src/cmd/dist/test.go

    	var skipFunc func(*distTest) (string, bool)
    	for _, opt := range opts {
    		switch opt := opt.(type) {
    		case rtSkipFunc:
    			skipFunc = opt.skip
    		}
    	}
    	// Register each test package as a separate test.
    	register1 := func(test *goTest) {
    		if test.variant == "" {
    			panic("empty variant")
    		}
    		name := testName(test.pkg, test.variant)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  10. cmd/storage-rest-client.go

    	xioutil "github.com/minio/minio/internal/ioutil"
    	"github.com/minio/minio/internal/rest"
    	xnet "github.com/minio/pkg/v3/net"
    	xbufio "github.com/philhofer/fwd"
    	"github.com/tinylib/msgp/msgp"
    )
    
    func isNetworkError(err error) bool {
    	if err == nil {
    		return false
    	}
    
    	if nerr, ok := err.(*rest.NetworkError); ok {
    		if down := xnet.IsNetworkOrHostDown(nerr.Err, false); down {
    			return true
    		}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 27.4K bytes
    - Viewed (0)
Back to top