Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 180 for bar7 (0.07 sec)

  1. subprojects/core/src/test/groovy/org/gradle/execution/plan/DefaultExecutionPlanParallelTest.groovy

            def projectB = project(project, "b")
    
            def fooA = task("foo", project: projectA)
            def barA = task("bar", project: projectA)
    
            def fooB = task("foo", project: projectB)
            def barB = task("bar", project: projectB)
    
            when:
            addToGraphAndPopulate(fooA, barA, fooB, barB)
            def taskNode1 = selectNextTaskNode()
            def taskNode2 = selectNextTaskNode()
    
            then:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 05 22:18:26 UTC 2024
    - 93.5K bytes
    - Viewed (0)
  2. cmd/post-policy_test.go

    	retStr := "{"
    	retStr = retStr + expirationStr + ","
    	retStr += conditionStr
    	retStr += "}"
    
    	return []byte(retStr)
    }
    
    // newPostPolicyBytesV4 - creates a bare bones postpolicy string with key and bucket matches.
    func newPostPolicyBytesV4(credential, bucketName, objectKey string, expiration time.Time) []byte {
    	t := UTCNow()
    	// Add the expiration date.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 30.2K bytes
    - Viewed (0)
  3. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    doesn't follow these names, you can override them. For example, if you have resources named `my-custom-gateway` with `selector` labels `foo=bar,istio=ingressgateway`: ```yaml name: my-custom-gateway # Override the name to match existing resources labels: app: "" # Unset default app selector label istio: ingressgateway # override default istio selector label foo: bar # Add the existing custom selector label ``` #### Migrating an existing Helm release An existing helm release can be `helm upgrade`d to...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/internal/http2/HpackTest.kt

      @Test
      fun incrementalIndexingWithDynamicTableIndexedName() {
        hpackWriter!!.writeHeaders(headerEntries("foo", "bar"))
        assertBytes(0x40, 3, 'f'.code, 'o'.code, 'o'.code, 3, 'b'.code, 'a'.code, 'r'.code)
        assertThat(hpackWriter!!.headerCount).isEqualTo(1)
        hpackWriter!!.writeHeaders(headerEntries("foo", "bar1"))
        assertBytes(0x7e, 4, 'b'.code, 'a'.code, 'r'.code, '1'.code)
        assertThat(hpackWriter!!.headerCount).isEqualTo(2)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 38.2K bytes
    - Viewed (0)
  5. src/mime/multipart/multipart_test.go

    Content-Type: multipart/alternative; boundary="foo-bar"
    
    --foo-bar
    
    Body
    --foo-bar
    
    Body2
    --foo-bar--
    --foo--`, "\n", "\r\n", -1),
    		want: []headerBody{
    			{textproto.MIMEHeader{"Content-Type": {`multipart/alternative; boundary="foo-bar"`}},
    				strings.Replace(`--foo-bar
    
    Body
    --foo-bar
    
    Body2
    --foo-bar--`, "\n", "\r\n", -1),
    			},
    		},
    	},
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 17:36:47 UTC 2022
    - 30.4K bytes
    - Viewed (0)
  6. src/net/mail/message_test.go

    			}
    		}
    	})
    
    }
    
    func TestAddressParsing(t *testing.T) {
    	tests := []struct {
    		addrsStr string
    		exp      []*Address
    	}{
    		// Bare address
    		{
    			`******@****.***e`,
    			[]*Address{{
    				Address: "******@****.***e",
    			}},
    		},
    		// RFC 5322, Appendix A.1.1
    		{
    			`John Doe <******@****.***e>`,
    			[]*Address{{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 11:31:03 UTC 2024
    - 30.4K bytes
    - Viewed (0)
  7. hack/lib/util.sh

        cd ${dest_dir}
        echo '{"CN":"${cn}","names":[${groups}],"hosts":[""],"key":{"algo":"rsa","size":2048}}' | ${CFSSL_BIN} gencert -ca=${ca}.crt -ca-key=${ca}.key -config=${ca}-config.json - | ${CFSSLJSON_BIN} -bare client-${id}
        mv "client-${id}-key.pem" "client-${id}.key"
        mv "client-${id}.pem" "client-${id}.crt"
        rm -f "client-${id}.csr"
    EOF
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
  8. src/index/suffixarray/suffixarray_test.go

    			"c",
    			"ab",
    			"bc",
    			"abc",
    			"a.c",
    			"a(b|c)",
    			"abc?",
    		},
    	},
    
    	{
    		"barbara*3",
    		"barbarabarbarabarbara",
    		[]string{
    			"a",
    			"bar",
    			"rab",
    			"arab",
    			"barbar",
    			"bara?bar",
    		},
    	},
    
    	{
    		"typing drill",
    		"Now is the time for all good men to come to the aid of their country.",
    		[]string{
    			"Now",
    			"the time",
    			"to come the aid",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  9. pkg/volume/hostpath/host_path.go

    	return &hostPathProvisioner{options: options, host: host, plugin: plugin, basePath: "hostpath_pv"}, nil
    }
    
    // HostPath volumes represent a bare host file or directory mount.
    // The direct at the specified path will be directly exposed to the container.
    type hostPath struct {
    	path     string
    	pathType *v1.HostPathType
    	volume.MetricsNil
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 15.3K bytes
    - Viewed (0)
  10. src/net/http/client_test.go

    	}
    	if tr.req.Close {
    		t.Error("got Close true, want false")
    	}
    	// Depending on map iteration, body can be either of these.
    	expectedBody := "foo=bar&foo=bar2&bar=baz"
    	expectedBody1 := "bar=baz&foo=bar&foo=bar2"
    	if g, e := tr.req.ContentLength, int64(len(expectedBody)); g != e {
    		t.Errorf("got ContentLength %d, want %d", g, e)
    	}
    	bodyb, err := io.ReadAll(tr.req.Body)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:30:50 UTC 2024
    - 63.8K bytes
    - Viewed (0)
Back to top