Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 224 for targ (0.04 sec)

  1. src/archive/tar/testdata/gnu-sparse-big.tar

    Joe Tsai <******@****.***> 1503105518 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 22:38:45 UTC 2017
    - 5K bytes
    - Viewed (0)
  2. src/archive/tar/testdata/pax-nul-xattrs.tar

    Joe Tsai <******@****.***> 1442533177 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 11 03:12:47 UTC 2017
    - 2.5K bytes
    - Viewed (0)
  3. src/cmd/fix/main.go

    		for _, f := range strings.Split(*forceRewrites, ",") {
    			force[f] = true
    		}
    	}
    
    	if flag.NArg() == 0 {
    		if err := processFile("standard input", true); err != nil {
    			report(err)
    		}
    		os.Exit(exitCode)
    	}
    
    	for i := 0; i < flag.NArg(); i++ {
    		path := flag.Arg(i)
    		switch dir, err := os.Stat(path); {
    		case err != nil:
    			report(err)
    		case dir.IsDir():
    			walkDir(path)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 19:41:17 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/tighten.go

    				if a.needRegister() && a.Op != OpSB && a.Op != OpSP {
    					narg++
    				}
    			}
    			if narg >= 2 && !v.Type.IsFlags() {
    				// Don't move values with more than one input, as that may
    				// increase register pressure.
    				// We make an exception for flags, as we want flag generators
    				// moved next to uses (because we only have 1 flag register).
    				continue
    			}
    			canMove[v.ID] = true
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 16 01:01:38 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/extract_outside_compilation_pass.cc

                                          data_types, outside_compilation_nodes, g,
                                          n);
    
      // In body_graph, create new _Arg/_Retval nodes, and replace lifted arg
      // nodes with the new _Arg nodes.
      std::vector<Node*> lifted_arg_nodes;
      lifted_arg_nodes.reserve(
          lifted_arg_nodes_and_outside_compilation_nodes.size());
      std::transform(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 104.7K bytes
    - Viewed (0)
  6. src/archive/tar/testdata/pax-global-records.tar

    Joe Tsai <******@****.***> 1503699341 -0700
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Aug 25 23:03:52 UTC 2017
    - 7K bytes
    - Viewed (0)
  7. tests/integration/pilot/testdata/upgrade/1.7.6-install.yaml.tar

    "limits": { "cpu": "2000m", "memory": "1024Mi" }, "requests": { "cpu": "10m", "memory": "10Mi" } } }, "remotePilotAddress": "", "remotePolicyAddress": "", "remoteTelemetryAddre": "", "sds": { "token": { "aud": "istio-ca" } }, "sts": { "servicePort": 0 }, "tag": "1.7.6", "telemetryNamespace": "istio-system", "tracer": { "datadog": { "address": "$(HOST_IP):8126" }, "lightstep": { "accessToken": "", "address": "" }, "stackdriver": { "debug": false, "maxNumberOfAnnotatio": 200, "maxNumberOfAttribute": 200, ...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 13 16:06:08 UTC 2021
    - 60K bytes
    - Viewed (0)
  8. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    range $tagName := $.Values.revisionTags }} apiVersion: admissionregistratio.k8s.io/v1 kind: MutatingWebhookConfi metadata: {{- if eq $.Release.Namespace "istio-system"}} name: istio-revision-tag-{{ $tagName }} {{- else }} name: istio-revision-tag-{{ $tagName }}-{{ $.Release.Namespace }} {{- end }} labels: istio.io/tag: {{ $tagName }} istio.io/rev: {{ $.Values.revision | default "default" }} install.operator.istio.io/owning-resource: {{ $.Values.ownerName | default "unknown" }} operator.istio.io/component:...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/encapsulate_util.h

    // value "true".
    extern const char kXlaIsLiftedArgAttrName[];
    
    // Attribute indicating that this node is a Placeholder node for an _Arg node
    // lifted out of If/While/function node. Attribute value will be a string, which
    // is the outside compilation cluster name sending the lifted arg node to host.
    extern const char kXlaLiftedArgOutsideCompilationAttrName[];
    
    // Attribute indicating that this is an IdentityN node receiving inputs for a
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 06:59:07 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  10. src/cmd/cgo/internal/testerrors/ptr_test.go

    		name:    "varok",
    		c:       `void f12(char** parg) {}`,
    		support: `var hello12 = [...]C.char{'h', 'e', 'l', 'l', 'o'}`,
    		body:    `parg := [1]*C.char{&hello12[0]}; C.f12(&parg[0])`,
    		fail:    false,
    	},
    	{
    		// Passing the address of a static variable with
    		// pointers does matter.
    		name:    "var1",
    		c:       `void f13(char*** parg) {}`,
    		support: `var hello13 = [...]*C.char{new(C.char)}`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 03 16:07:49 UTC 2023
    - 21.2K bytes
    - Viewed (0)
Back to top