Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 93 for bark (0.15 sec)

  1. cmd/admin-handlers.go

    // - stop (stops all the MinIO instances in a setup)
    // - freeze (freezes all incoming S3 API calls)
    // - unfreeze (unfreezes previously frozen S3 API calls)
    //
    // This newer API now returns back status per remote peer and local regarding
    // if a "restart/stop" was successful or not. Service signal now supports
    // a dry-run that helps skip the nodes that may have hung drives. By default
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  2. src/crypto/x509/x509_test.go

    		}
    
    		if len(cert.PermittedURIDomains) != 2 || cert.PermittedURIDomains[0] != ".bar.com" || cert.PermittedURIDomains[1] != "bar.com" {
    			t.Errorf("%s: failed to parse permitted URIs: %#v", test.name, cert.PermittedURIDomains)
    		}
    
    		if len(cert.ExcludedURIDomains) != 2 || cert.ExcludedURIDomains[0] != ".bar2.com" || cert.ExcludedURIDomains[1] != "bar2.com" {
    			t.Errorf("%s: failed to parse excluded URIs: %#v", test.name, cert.ExcludedURIDomains)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 163.4K bytes
    - Viewed (0)
  3. cmd/server_test.go

    		{getListObjectsV1URL(s.endPoint, bucketName, "", "1000", "url"), []string{"<Key>foo+bar+1</Key>", "<Key>foo+bar+2</Key>", "<Key>foo+%01+bar</Key>"}},
    		{
    			getListObjectsV2URL(s.endPoint, bucketName, "", "1000", "", "", ""),
    			[]string{
    				"<Key>foo bar 1</Key>",
    				"<Key>foo bar 2</Key>",
    				"<Key>foo &#x1; bar</Key>",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  4. src/cmd/go/internal/load/pkg.go

    			// and then append /vendor/path.
    			chopped := len(dir) - i
    			if chopped == len(importPath)+1 {
    				// We walked up from c:\gopath\src\foo\bar
    				// and found c:\gopath\src\vendor\path.
    				// We chopped \foo\bar (length 8) but the import path is "foo/bar" (length 7).
    				// Use "vendor/path" without any prefix.
    				return vpath
    			}
    			return importPath[:len(importPath)-chopped] + "/" + vpath
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 28 17:00:51 UTC 2024
    - 120K bytes
    - Viewed (0)
  5. src/compress/bzip2/testdata/Isaac.Newton-Opticks.txt.bz2

    to the first of those dark Rings, and the first of those luminous Rings was now grown equal to the second of those dark ones, and the second of those luminous ones to the third of those dark ones, and so on. For the Diameters of the luminous Rings were now 1-3/16, 2-1/16, 2-2/3, 3-3/20, &c. Inches. When the distance between the incident and reflected beams of Light became a little bigger, there emerged out of the middle of the dark Spot after the indigo a blue, and then out of that blue a pale green,...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 24 18:26:02 UTC 2018
    - 129.4K bytes
    - Viewed (0)
  6. okhttp/src/test/java/okhttp3/CallTest.kt

        server.enqueue(MockResponse(body = "abc"))
        client =
          client.newBuilder()
            .hostnameVerifier(RecordingHostnameVerifier())
            .connectionSpecs(
              // Attempt RESTRICTED_TLS then fall back to MODERN_TLS.
              listOf(
                ConnectionSpec.RESTRICTED_TLS,
                ConnectionSpec.MODERN_TLS,
              ),
            )
            .sslSocketFactory(
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 142.5K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/CacheTest.kt

        assertThat(recordedRequest1.sequenceNumber).isEqualTo(0)
        val request2 = Request.Builder().url(server.url("/bar")).build()
        val response2 = client.newCall(request2).execute()
        assertThat(response2.body.string()).isEqualTo("ABC")
        val recordedRequest2 = server.takeRequest()
        assertThat(recordedRequest2.requestLine).isEqualTo("GET /bar HTTP/1.1")
        assertThat(recordedRequest2.sequenceNumber).isEqualTo(1)
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
  8. src/cmd/internal/obj/arm64/asm7.go

    			}
    		} else {
    			c.asmout(p, o, out[:])
    			for i = 0; i < sz/4; i++ {
    				c.ctxt.Arch.ByteOrder.PutUint32(bp, out[i])
    				bp = bp[4:]
    				psz += 4
    			}
    		}
    	}
    
    	// Mark nonpreemptible instruction sequences.
    	// We use REGTMP as a scratch register during call injection,
    	// so instruction sequences that use REGTMP are unsafe to
    	// preempt asynchronously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 201.1K bytes
    - Viewed (0)
  9. pkg/controller/job/job_controller_test.go

    		Spec: batch.JobSpec{
    			Selector: &metav1.LabelSelector{
    				MatchLabels: map[string]string{"foo": "bar"},
    			},
    			Template: v1.PodTemplateSpec{
    				ObjectMeta: metav1.ObjectMeta{
    					Labels: map[string]string{
    						"foo": "bar",
    					},
    				},
    				Spec: v1.PodSpec{
    					Containers: []v1.Container{
    						{Image: "foo/bar"},
    					},
    				},
    			},
    		},
    	}
    	if completionMode != "" {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

              "type": "integer"
            },
            "rollbackTo": {
              "$ref": "#/definitions/io.k8s.api.apps.v1beta1.RollbackConfig",
              "description": "DEPRECATED. The config this deployment is rolling back to. Will be cleared after rollback is done."
            },
            "selector": {
              "$ref": "#/definitions/io.k8s.apimachinery.pkg.apis.meta.v1.LabelSelector",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
Back to top