Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 6 of 6 for applicationId (0.18 sec)

  1. src/net/http/serve_test.go

    		{MethodHead, nil, "text/html; charset=utf-8", ""},
    		{MethodPost, nil, "", ""},
    		{MethodDelete, nil, "", ""},
    		{"foo", nil, "", ""},
    		{MethodGet, &ctHeader{[]string{"application/test"}}, "application/test", ""},
    		{MethodGet, &ctHeader{[]string{}}, "", ""},
    		{MethodGet, &ctHeader{nil}, "", ""},
    	}
    	for _, tt := range tests {
    		req := httptest.NewRequest(tt.method, "http://example.com/qux/", nil)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  2. cmd/object-handlers_test.go

    			accessKey:        credentials.AccessKey,
    			secretKey:        credentials.SecretKey,
    			metadata: map[string]string{
    				"Content-Type": "application/json",
    			},
    			expectedRespStatus: http.StatusOK,
    		},
    
    		// Test case - 2.
    		// Test case with invalid source object.
    		2: {
    			bucketName:       bucketName,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    						{
    							Type: autoscaling.ContainerResourceMetricSourceType,
    							ContainerResource: &autoscaling.ContainerResourceMetricSource{
    								Name:      api.ResourceCPU,
    								Container: "application",
    								Target: autoscaling.MetricTarget{
    									Type:         autoscaling.AverageValueMetricType,
    									AverageValue: resource.NewMilliQuantity(100, resource.DecimalSI),
    								},
    							},
    						},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. src/cmd/go/internal/work/exec.go

    			// with the exception of …”
    			switch c {
    			case '`', '$', '\\':
    			default:
    				flag = append(flag, c)
    				continue
    			}
    		}
    
    		// “The application shall quote the following characters if they are to
    		// represent themselves:”
    		switch c {
    		case '|', '&', ';', '<', '>', '(', ')', '$', '`':
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  5. cluster/gce/util.sh

        PROTO="https://"
      fi
      run-gcloud-command "${EXISTING_MASTER_NAME}" "${EXISTING_MASTER_ZONE}" "curl ${TLSARG} ${PROTO}127.0.0.1:${client_port}/v2/members -XPOST -H \"Content-Type: application/json\" -d '{\"peerURLs\":[\"https://${REPLICA_NAME}:${internal_port}\"]}' -s"
      return $?
    }
    
    # Sets EXISTING_MASTER_NAME and EXISTING_MASTER_ZONE variables.
    #
    # Assumed vars:
    #   PROJECT
    #
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  6. src/cmd/go/alldocs.go

    //	GOPPC64
    //		For GOARCH=ppc64{,le}, the target ISA (Instruction Set Architecture).
    //		Valid values are power8 (default), power9, power10.
    //	GORISCV64
    //		For GOARCH=riscv64, the RISC-V user-mode application profile for which
    //		to compile. Valid values are rva20u64 (default), rva22u64.
    //		See https://github.com/riscv/riscv-profiles/blob/main/src/profiles.adoc
    //	GOWASM
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
Back to top