Search Options

Results per page
Sort
Preferred Languages
Advance

Results 161 - 170 of 188 for x_name (0.22 sec)

  1. manifests/charts/istio-control/istio-discovery/files/injection-template.yaml

        - name: ISTIO_META_NETWORK
          value: "{{ .Values.global.network }}"
        {{- end }}
        {{- if .DeploymentMeta.Name }}
        - name: ISTIO_META_WORKLOAD_NAME
          value: "{{ .DeploymentMeta.Name }}"
        {{ end }}
        {{- if and .TypeMeta.APIVersion .DeploymentMeta.Name }}
        - name: ISTIO_META_OWNER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  2. manifests/charts/istiod-remote/files/injection-template.yaml

        - name: ISTIO_META_NETWORK
          value: "{{ .Values.global.network }}"
        {{- end }}
        {{- if .DeploymentMeta.Name }}
        - name: ISTIO_META_WORKLOAD_NAME
          value: "{{ .DeploymentMeta.Name }}"
        {{ end }}
        {{- if and .TypeMeta.APIVersion .DeploymentMeta.Name }}
        - name: ISTIO_META_OWNER
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 21:01:52 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  3. tensorflow/c/experimental/filesystem/plugins/posix/posix_filesystem.cc

        return;
      }
    
      // We cannot rename directories yet, so prevent this.
      if (stat(src, &st) != 0) {
        TF_SetStatusFromIOError(status, errno, src);
        return;
      } else if (S_ISDIR(st.st_mode)) {
        TF_SetStatus(status, TF_FAILED_PRECONDITION, "source path is a directory");
        return;
      }
    
      // Do the actual rename. Here both arguments are filenames.
      if (rename(src, dst) != 0)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Mar 24 20:08:23 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-input-func-arg-name-collision.pbtxt

    }
    library {
      function {
        signature {
          name: "while_body_6"
          input_arg {
            name: "while_loop_counter"
            type: DT_INT32
          }
          input_arg {
            name: "while_maximum_iterations"
            type: DT_INT32
          }
          input_arg {
            name: "input"
            type: DT_INT32
          }
          output_arg {
            name: "output"
            type: DT_INT32
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Nov 11 19:14:04 UTC 2020
    - 4.8K bytes
    - Viewed (0)
  5. pkg/config/analysis/analyzers/testdata/service-no-port-name-system-namespace.yaml

    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service2 # Skipped because it has an istio: label
      namespace: istio-system
      labels:
        istio: xxx
    spec:
      selector:
        app: my-service2
      ports:
        - name: foo
          protocol: TCP
          port: 8080
          targetPort: 8080
    ---
    apiVersion: v1
    kind: Service
    metadata:
      name: my-service3 # Skipped because it's in a kube system namespace
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 1.3K bytes
    - Viewed (0)
  6. src/cmd/link/internal/loadpe/ldpe.go

    		// details on this problem.
    		if state.arch.Family == sys.I386 && name[0] == '_' && name != "_main" && !strings.HasPrefix(name, "__imp_") {
    			name = name[1:] // _Name => Name
    		}
    	}
    
    	// remove last @XXX
    	if i := strings.LastIndex(name, "@"); i >= 0 {
    		name = name[:i]
    	}
    
    	var s loader.Sym
    	var bld *loader.SymbolBuilder
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 18 20:26:46 UTC 2023
    - 26.5K bytes
    - Viewed (0)
  7. src/internal/xcoff/xcoff.go

    	C_ESTAT   = 144 // End of static block
    	C_GTLS    = 145 // Global thread-local variable
    	C_STTLS   = 146 // Static thread-local variable
    )
    
    // File Auxiliary Entry
    type AuxFile64 struct {
    	Xfname   [8]byte // Name or offset inside string table
    	Xftype   uint8   // Source file string type
    	Xauxtype uint8   // Type of auxiliary entry
    }
    
    // Function Auxiliary Entry
    type AuxFcn32 struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 08 20:36:37 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  8. pkg/kube/inject/testdata/inject/truncate-canonical-name-custom-controller-pod.yaml

    metadata:
      generateName: helloworld-
      # less than 63 characters
      name: helloworld-helloworld
      ownerReferences:
        - apiVersion: foo/v1
          controller: true
          kind: Bar
          # more than 63 characters
          name: helloworld-helloworld-helloworld-helloworld-helloworld-hellowo-ld
          uid: 12345678-1234-1234-1234-123456789012
    spec:
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 08:39:34 UTC 2024
    - 524 bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/truncate-canonical-name-custom-controller-pod.yaml.injected

        - name: HOST_IP
          valueFrom:
            fieldRef:
              fieldPath: status.hostIP
        - name: ISTIO_CPU_LIMIT
          valueFrom:
            resourceFieldRef:
              divisor: "0"
              resource: limits.cpu
        - name: PROXY_CONFIG
          value: |
            {}
        - name: ISTIO_META_POD_PORTS
          value: |-
            [
                {"name":"http","containerPort":80}
            ]
        - name: ISTIO_META_APP_CONTAINERS
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Feb 27 16:55:16 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  10. src/internal/trace/traceviewer/static/trace_viewer_full.html

    process.sortIndex=Number.NEGATIVE_INFINITY;process.important=false;return;}
    const uiThread=process.getThread(process.pid);if(!process.name&&uiThread&&uiThread.name){if(/^ndroid\./.test(uiThread.name)){uiThread.name='a'+uiThread.name;}
    process.name=uiThread.name;uiThread.name='UI Thread';}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 2.5M bytes
    - Viewed (1)
Back to top