Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 16 for declareNS (0.34 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. cluster/gce/gci/configure-helper.sh

      LOG_INSTANCE_NAME=$(hostname)
      LOG_BOOT_ID=$(journalctl --list-boots | grep -E '^ *0' | awk '{print $2}')
      declare -Ag LOG_START_TIMES
      declare -ag LOG_TRAP_STACK
    
      LOG_STATUS_STARTED='STARTED'
      LOG_STATUS_COMPLETED='COMPLETED'
      LOG_STATUS_ERROR='ERROR'
    }
    
    # Sets an EXIT trap.
    # Args:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  8. src/reflect/value.go

    		}
    		return Value{v.typ(), unsafe.Pointer(&t), v.flag}
    	}
    
    	if i < 0 || j < i || j > cap {
    		panic("reflect.Value.Slice: slice index out of bounds")
    	}
    
    	// Declare slice so that gc can see the base pointer in it.
    	var x []unsafe.Pointer
    
    	// Reinterpret as *unsafeheader.Slice to edit.
    	s := (*unsafeheader.Slice)(unsafe.Pointer(&x))
    	s.Len = j - i
    	s.Cap = cap - i
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    // Each listed package causes the execution of a separate test binary.
    // Files whose names begin with "_" (including "_test.go") or "." are ignored.
    //
    // Test files that declare a package with the suffix "_test" will be compiled as a
    // separate package, and then linked and run with the main test binary.
    //
    // The go tool will ignore a directory named "testdata", making it available
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface VirtualMemberHidden : KaFirDiagnostic<KtNamedDeclaration> {
            override val diagnosticClass get() = VirtualMemberHidden::class
            val declared: KaCallableSymbol
            val overriddenContainer: KaClassLikeSymbol
        }
    
        interface ManyCompanionObjects : KaFirDiagnostic<KtObjectDeclaration> {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
Back to top