Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 48 for Required (0.27 sec)

  1. staging/publishing/rules.yaml

        - repository: kms
          branch: master
        - repository: component-base
          branch: master
        source:
          branch: master
          dirs:
          - staging/src/k8s.io/sample-apiserver
        required-packages:
        - k8s.io/code-generator
        smoke-test: |
          # assumes GO111MODULE=on
          go build -mod=mod .
      - name: release-1.27
        go: 1.21.11
        dependencies:
        - repository: apimachinery
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  2. cluster/gce/windows/k8s-node-setup.psm1

    #
    # Create-NodePki() must be called first.
    #
    # Required ${kube_env} keys:
    #   KUBERNETES_MASTER_NAME: the apiserver IP address.
    function Create-KubeletKubeconfig {
      Write_BootstrapKubeconfig
    }
    
    # Creates the kubeconfig user file for applications that communicate with Kubernetes.
    #
    # Create-NodePki() must be called first.
    #
    # Required ${kube_env} keys:
    #   CA_CERT
    #   KUBERNETES_MASTER_NAME
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 21:13:22 UTC 2024
    - 88.3K bytes
    - Viewed (0)
  3. configure.py

    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    #
    #     http://www.apache.org/licenses/LICENSE-2.0
    #
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Jun 10 04:32:44 UTC 2024
    - 53.8K bytes
    - Viewed (0)
  4. pilot/pkg/config/kube/gateway/conversion.go

    	if nilOrEqual((*string)(to.Group), "") && nilOrEqual((*string)(to.Kind), gvk.Service.Kind) {
    		// Service
    		if to.Port == nil {
    			// "Port is required when the referent is a Kubernetes Service."
    			return nil, &ConfigError{Reason: InvalidDestination, Message: "port is required in backendRef"}
    		}
    		if strings.Contains(string(to.Name), ".") {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

      * If using JUnit 5, an explicit `runtimeOnly` dependency on `junit-platform-launcher` is required
      in addition to the existing `implementation` dependency on the test engine.
      * If using JUnit 4, only the existing `implementation` dependency on `junit` 4 is required.
      * If using JUnit 3, a test `runtimeOnly` dependency on `junit` 4 is required in addition to a
      `compileOnly` dependency on `junit` 3.
    
    =====
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  7. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

     * you may not use this file except in compliance with the License.
     * You may obtain a copy of the License at
     *
     *      http://www.apache.org/licenses/LICENSE-2.0
     *
     * Unless required by applicable law or agreed to in writing, software
     * distributed under the License is distributed on an "AS IS" BASIS,
     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  8. cmd/api-errors.go

    	},
    	ErrMissingContentMD5: {
    		Code:           "MissingContentMD5",
    		Description:    "Missing required header for this request: Content-Md5.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingSecurityHeader: {
    		Code:           "MissingSecurityHeader",
    		Description:    "Your request was missing a required header",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrMissingRequestBodyError: {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modget/get.go

    		r.buildListVersion[m.Path] = m.Version
    	}
    	return true
    }
    
    func reqsFromGoMod(f *modfile.File) []module.Version {
    	reqs := make([]module.Version, len(f.Require), 2+len(f.Require))
    	for i, r := range f.Require {
    		reqs[i] = r.Mod
    	}
    	if f.Go != nil {
    		reqs = append(reqs, module.Version{Path: "go", Version: f.Go.Version})
    	}
    	if f.Toolchain != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  10. tests/integration/ambient/baseline_test.go

    // you may not use this file except in compliance with the License.
    // You may obtain a copy of the License at
    //
    //     http://www.apache.org/licenses/LICENSE-2.0
    //
    // Unless required by applicable law or agreed to in writing, software
    // distributed under the License is distributed on an "AS IS" BASIS,
    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 00:07:28 UTC 2024
    - 78.4K bytes
    - Viewed (0)
Back to top