Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 30 for declareNS (1.78 sec)

  1. doc/go1.17_spec.html

    Every identifier in a program must be declared.
    No identifier may be declared twice in the same block, and
    no identifier may be declared in both the file and package block.
    </p>
    
    <p>
    The <a href="#Blank_identifier">blank identifier</a> may be used like any other identifier
    in a declaration, but it does not introduce a binding and thus is not declared.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 11 20:22:45 UTC 2024
    - 211.6K bytes
    - Viewed (0)
  2. cluster/gce/util.sh

    function yaml-map-string-stringarray {
      declare -r name="${1}"
      declare -r encoded="${2}"
      declare -r kv_sep="${3:-:}"
      declare -r item_sep="${4:-,}"
    
      declare -a pairs # indexed array
      declare -A map # associative array
      IFS="${item_sep}" read -ra pairs <<<"${encoded}" # split on item_sep
      for pair in "${pairs[@]}"; do
        declare key
        declare value
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  3. src/net/http/server.go

    	// ErrContentLength is returned by ResponseWriter.Write calls
    	// when a Handler set a Content-Length response header with a
    	// declared size and then attempted to write more bytes than
    	// declared.
    	ErrContentLength = errors.New("http: wrote more than the declared Content-Length")
    
    	// Deprecated: ErrWriteAfterFlush is no longer returned by
    	// anything in the net/http package. Callers should not
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/validation_test.go

    				"self.objs[2] + self.objs[0] == self.objs[0]",
    
    				"self.objs[0] == [self.objs[0][0], self.objs[0][1]]", // equal against a declared list
    				"self.objs[0] == [self.objs[0][1], self.objs[0][0]]",
    
    				"self.objs[2] + [self.objs[0][0], self.objs[0][1]] == self.objs[0]", // concat against a declared list
    				"size(self.objs[0] + [self.objs[3][0]]) == 3",
    			},
    			errors: map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 17:14:10 UTC 2024
    - 159.9K bytes
    - Viewed (0)
  5. src/net/http/serve_test.go

    	// has Content-Length +
    	// declares Connection: close (so pointless to read more).
    	2: {
    		bodySize:      20 << 10,
    		bodyChunked:   false,
    		reqConnClose:  true,
    		wantEOFSearch: false,
    		wantNextReq:   false,
    	},
    
    	// Small enough to slurp past to the next request +
    	// declares Connection: close,
    	// but chunked, so it might have trailers.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  6. api/maven-api-model/src/main/mdo/maven.mdo

            <field>
              <name>modelVersion</name>
              <version>4.0.0+</version>
              <required>true</required>
              <description>Declares to which version of project descriptor this POM conforms.</description>
              <type>String</type>
            </field>
    
            <!-- ====================================================================== -->
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 13:29:46 UTC 2024
    - 115.1K bytes
    - Viewed (0)
  7. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1alpha1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1alpha1.MatchResources"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.4K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet_pods.go

    	//         variables in the .Value field; the sources of variables are the declared
    	//         variables of the container and the service environment variables
    	//     b.  If a source is defined for an environment variable, resolve the source
    	// 2.  Create the container's environment in the order variables are declared
    	// 3.  Add remaining service environment vars
    	var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  9. api/openapi-spec/v3/apis__admissionregistration.k8s.io__v1beta1_openapi.json

                "allOf": [
                  {
                    "$ref": "#/components/schemas/io.k8s.api.admissionregistration.v1beta1.MatchResources"
                  }
                ],
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 235.7K bytes
    - Viewed (0)
  10. CHANGELOG/CHANGELOG-1.4.md

    * Bump cadvisor dependencies to latest head.  ([#29492](https://github.com/kubernetes/kubernetes/pull/29492), [@Random-Liu](https://github.com/Random-Liu))
    * If a service of type node port declares multiple ports, quota on "services.nodeports" will charge for each port in the service. ([#29457](https://github.com/kubernetes/kubernetes/pull/29457), [@derekwaynecarr](https://github.com/derekwaynecarr))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
Back to top