Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 6,167 for kini (0.28 sec)

  1. common/scripts/kind_provisioner.sh

    # cleanup_kind_cluster takes a single parameter NAME
    # and deletes the KinD cluster with that name
    function cleanup_kind_cluster() {
      echo "Test exited with exit code $?."
      NAME="${1}"
      kind export logs --name "${NAME}" "${ARTIFACTS}/kind" -v9 || true
      if [[ -z "${SKIP_CLEANUP:-}" ]]; then
        echo "Cleaning up kind cluster"
        kind delete cluster --name "${NAME}" -v9 || true
      fi
    }
    Shell Script
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 08 19:12:55 GMT 2024
    - 17.3K bytes
    - Viewed (1)
  2. guava/src/com/google/common/collect/JdkBackedImmutableMap.java

          }
        }
        if (duplicates != null) {
          @SuppressWarnings({"rawtypes", "unchecked"})
          Entry<K, V>[] newEntryArray = new Entry[n - dupCount];
          for (int inI = 0, outI = 0; inI < n; inI++) {
            Entry<K, V> entry = requireNonNull(entryArray[inI]);
            K key = entry.getKey();
            if (duplicates.containsKey(key)) {
              V value = duplicates.get(key);
              if (value == null) {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Thu Nov 30 21:54:06 GMT 2023
    - 4.8K bytes
    - Viewed (0)
  3. maven-core/src/site/apt/index.apt

    ~~
    ~~ 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.  See the License for the
    ~~ specific language governing permissions and limitations
    ~~ under the License.
    
     -----
     Introduction
     -----
     Hervé Boutemy
     -----
     2013-07-27
     -----
    Plain Text
    - Registered: Sun Apr 28 03:35:10 GMT 2024
    - Last Modified: Wed Jun 14 05:48:39 GMT 2023
    - 5.3K bytes
    - Viewed (0)
  4. manifests/charts/base/templates/validatingadmissionpolicy.yaml

          resources:   ["*"]
      variables:
        - name: isEnvoyFilter
          expression: "object.kind == 'EnvoyFilter'"
        - name: isWasmPlugin
          expression: "object.kind == 'WasmPlugin'"
        - name: isProxyConfig
          expression: "object.kind == 'ProxyConfig'"
        - name: isTelemetry
          expression: "object.kind == 'Telemetry'"
      validations:
        - expression: "!variables.isEnvoyFilter"
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Mon Apr 29 21:07:45 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  5. tensorflow/c/eager/abstract_function.h

    class AbstractFunction : public core::RefCounted {
     protected:
      enum AbstractFunctionKind { kGraph, kMlir };
      explicit AbstractFunction(AbstractFunctionKind kind) : kind_(kind) {}
    
     public:
      // Returns which subclass is this instance of.
      AbstractFunctionKind getKind() const { return kind_; }
    
      // Returns the AbstractFunction as a FunctionDef.
      virtual Status GetFunctionDef(const FunctionDef**) = 0;
    
    C
    - Registered: Tue Apr 30 12:39:09 GMT 2024
    - Last Modified: Mon Mar 04 19:49:06 GMT 2024
    - 1.9K bytes
    - Viewed (0)
  6. api/maven-api-toolchain/src/main/mdo/toolchains.mdo

      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.  See the License for the
      specific language governing permissions and limitations
      under the License.
    
    -->
    XML
    - Registered: Sun May 05 03:35:11 GMT 2024
    - Last Modified: Wed Feb 07 21:28:01 GMT 2024
    - 8.5K bytes
    - Viewed (0)
  7. istioctl/pkg/validate/validate_test.go

              ports:
              - containerPort: 9080
    kind: List
    metadata:
      resourceVersion: ""
      selfLink: ""`
    	invalidSvcList = `
    apiVersion: v1
    items:
      -
        apiVersion: v1
        kind: Service
        metadata:
          name: details
        spec:
          ports:
            -
              name: details
              port: 9080
      -
        apiVersion: v1
        kind: Service
        metadata:
          name: hello
        spec:
    Go
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Tue Jul 25 08:08:36 GMT 2023
    - 21.5K bytes
    - Viewed (0)
  8. manifests/charts/istio-cni/templates/clusterrolebinding.yaml

    apiVersion: rbac.authorization.k8s.io/v1
    kind: ClusterRoleBinding
    metadata:
      name: istio-cni
      labels:
        app: istio-cni
        release: {{ .Release.Name }}
        istio.io/rev: {{ .Values.revision | default "default" }}
        install.operator.istio.io/owning-resource: {{ .Values.ownerName | default "unknown" }}
        operator.istio.io/component: "Cni"
    roleRef:
      apiGroup: rbac.authorization.k8s.io
      kind: ClusterRole
      name: istio-cni
    subjects:
    Others
    - Registered: Wed May 08 22:53:08 GMT 2024
    - Last Modified: Wed May 01 20:25:40 GMT 2024
    - 1.7K bytes
    - Viewed (0)
  9. schema/schema.go

    	value := reflect.ValueOf(dest)
    	if value.Kind() == reflect.Ptr && value.IsNil() {
    		value = reflect.New(value.Type().Elem())
    	}
    	modelType := reflect.Indirect(value).Type()
    
    	if modelType.Kind() == reflect.Interface {
    		modelType = reflect.Indirect(reflect.ValueOf(dest)).Elem().Type()
    	}
    
    	for modelType.Kind() == reflect.Slice || modelType.Kind() == reflect.Array || modelType.Kind() == reflect.Ptr {
    		modelType = modelType.Elem()
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Tue Oct 10 06:50:29 GMT 2023
    - 13.7K bytes
    - Viewed (0)
  10. schema/field.go

    		fieldStruct.Anonymous && (field.Creatable || field.Updatable || field.Readable)) {
    		kind := reflect.Indirect(fieldValue).Kind()
    		switch kind {
    		case reflect.Struct:
    			var err error
    			field.Creatable = false
    			field.Updatable = false
    			field.Readable = false
    
    			cacheStore := &sync.Map{}
    Go
    - Registered: Sun May 05 09:35:13 GMT 2024
    - Last Modified: Mon Apr 15 03:20:20 GMT 2024
    - 32K bytes
    - Viewed (1)
Back to top