Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 335 for crd_name (0.28 sec)

  1. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

              - --pod-id=$(POD_NAME)
              - --namespace-id=$(POD_NAMESPACE)
            env:
              - name: POD_NAME
                valueFrom:
                  fieldRef:
                    fieldPath: metadata.name
              - name: POD_NAMESPACE
                valueFrom:
                  fieldRef:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  2. src/internal/types/errors/generrordocs.go

    				if len(spec.Names) != 1 {
    					log.Fatalf("bad Code declaration for %q: got %d names, want exactly 1", spec.Names[0].Name, len(spec.Names))
    				}
    				codename := spec.Names[0].Name
    				f(codename, spec)
    			}
    		}
    	}
    }
    
    const markdownTemplate = `---
    title: {{.Name}}
    layout: article
    ---
    <!-- Copyright 2023 The Go Authors. All rights reserved.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 24 03:14:42 UTC 2023
    - 3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/converter_gen.cc

                "  auto {0} = Convert{1}ForOptionWriter(op.{2}(), fbb);\n",
                arg_name, mlir::tblgen::Attribute(arg_def).getAttrDefName(),
                op.getGetterName(arg_name));
            options.push_back(arg_name.str());
          }
        }
    
        // Add options due to derived attributes.
        for (const auto &val : def->getValues()) {
          if (auto *record = dyn_cast<RecordRecTy>(val.getType())) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Dec 19 15:05:28 UTC 2023
    - 23.7K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem_helper.cc

      if (error_code != 0) {
        errno = error_code;
        return -1;
      } else {
        return 0;
      }
    }
    
    int RemoveSpecialDirectoryEntries(const struct dirent* entry) {
      return strcmp(entry->d_name, ".") != 0 && strcmp(entry->d_name, "..") != 0;
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 16 05:36:52 UTC 2020
    - 2.1K bytes
    - Viewed (0)
  5. helm/minio/templates/NOTES.txt

    {{ template "minio.fullname" . }}.{{ .Release.Namespace }}.svc.cluster.local
    
    To access MinIO from localhost, run the below commands:
    
      1. export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "release={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}")
    
      2. kubectl port-forward $POD_NAME 9000 --namespace {{ .Release.Namespace }}
    
    Read more about port forwarding here: http://kubernetes.io/docs/user-guide/kubectl/kubectl_port-forward/
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Sep 29 04:28:45 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input/pilot_k8s_settings.yaml

      hub: docker.io/istio
      tag: 1.1.4
      meshConfig:
        rootNamespace: istio-control
      components:
        pilot:
          enabled: true
          namespace: istio-control
          k8s:
            env:
              - name: POD_NAME
                valueFrom:
                  fieldRef:
                    apiVersion: v1
                    fieldPath: new.path
              - name: GODEBUG
                value: gctrace=111
              - name: NEW_VAR
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Dec 06 02:56:54 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/xla_compile_util.cc

      // dependency edge to the _SOURCE node.
      for (int64_t i = 0, end = args.size(); i < end; ++i) {
        Node* node;
        string arg_name = absl::StrCat("_arg", i);
        Status status =
            NodeBuilder(arg_name, FunctionLibraryDefinition::kArgOp)
                .ControlInput(graph->source_node())
                .Attr("T", args[i].kind == XlaArgument::kResource ? DT_RESOURCE
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  8. samples/addons/extras/prometheus-operator.yaml

        - sourceLabels: [__meta_kubernetes_namespace]
          action: replace
          targetLabel: namespace
        - sourceLabels: [__meta_kubernetes_pod_name]
          action: replace
          targetLabel: pod_name
    ---
    apiVersion: monitoring.coreos.com/v1
    kind: ServiceMonitor
    metadata:
      name: istio-component-monitor
      namespace: istio-system
      labels:
        monitoring: istio-components
        release: istio
    spec:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 24 06:41:54 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/http/HttpAuthenticationDependencyResolutionIntegrationTest.groovy

            where:
            authScheme | credsName | creds
            BASIC      | 'missing' | ''
            DIGEST     | 'missing' | ''
            NTLM       | 'missing' | ''
            BASIC      | 'bad'     | badCredentials
            DIGEST     | 'bad'     | badCredentials
            NTLM       | 'bad'     | badCredentials
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 18.7K bytes
    - Viewed (0)
  10. cni/pkg/nodeagent/options.go

    	SystemNamespace   = env.RegisterStringVar("SYSTEM_NAMESPACE", constants.IstioSystemNamespace, "istio system namespace").Get()
    	PodName           = env.RegisterStringVar("POD_NAME", "", "").Get()
    	NodeName          = env.RegisterStringVar("NODE_NAME", "", "").Get()
    	Revision          = env.RegisterStringVar("REVISION", "", "").Get()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 17 21:52:29 UTC 2024
    - 2.1K bytes
    - Viewed (0)
Back to top