Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 283 for pname (0.05 sec)

  1. doc/next/6-stdlib/99-minor/archive/tar/50102.md

    If the argument to [FileInfoHeader] implements the new [FileInfoNames]
    interface, then the interface methods will be used to set the Uname/Gname
    of the file header. This allows applications to override the system-dependent
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 12 20:57:18 UTC 2024
    - 243 bytes
    - Viewed (0)
  2. maven-xml-impl/src/main/java/org/apache/maven/internal/xml/XmlNodeStaxBuilder.java

                                String aName = parser.getAttributeLocalName(i);
                                String aValue = parser.getAttributeValue(i);
                                String aPrefix = parser.getAttributePrefix(i);
                                if (aPrefix != null && !aPrefix.isEmpty()) {
                                    aName = aPrefix + ":" + aName;
                                }
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 6.2K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/generator/BazelFileContentGenerator.groovy

            "outname": attr.string(),
        },
        outputs = {"out": "%{name}.java"},
        implementation = _impl,
    )
    
    def junit_tests(name, srcs, **kwargs):
        s_name = name.replace("-", "_") + "TestSuite"
        _GenSuite(
            name = s_name,
            srcs = srcs,
            outname = s_name,
        )
        java_test(
            name = name,
            test_class = s_name,
            srcs = srcs + [":" + s_name],
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tfr/integration/node_expansion_pass.cc

      std::string fname =
          absl::StrCat("_expanded_", ndef.name(), "_", std::to_string(x));
      if (!ctx.FindFunctionByName(fname)) {
        TF_ASSIGN_OR_RETURN(auto func, ExpandNode(ndef, fname));
        TF_RETURN_IF_ERROR(ctx.AddFunctionDef(func));
      }
    
      // Rewrite the out_op to be the call op. This essentially a deep copy of the
      // orig_op, except the op name.
      auto* new_op = new EagerOperation(&ctx);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sun Feb 25 16:22:36 UTC 2024
    - 3.8K bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/telemetry/internal/counter/parse.go

    		headOff := hdrLen + hashOff + i*4
    		head := m.load32(headOff)
    		off := head
    		for off != 0 {
    			ename, next, v, ok := m.entryAt(off)
    			if !ok {
    				return corrupt()
    			}
    			if _, ok := f.Count[string(ename)]; ok {
    				return corrupt()
    			}
    			ctrName := DecodeStack(string(ename))
    			f.Count[ctrName] = v.Load()
    			off = next
    		}
    	}
    	return f, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 14:38:01 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  6. istioctl/pkg/validate/validate.go

    		// Display warnings we encountered as well
    		for _, fname := range filenames {
    			if w := warningsByFilename[fname]; w != nil {
    				if fname == "-" {
    					_, _ = fmt.Fprint(writer, warningToString(w))
    					break
    				}
    				_, _ = fmt.Fprintf(writer, "%q has warnings: %v\n", fname, warningToString(w))
    			}
    		}
    		return errs
    	}
    	for _, fname := range filenames {
    		if fname == "-" {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jan 22 17:58:52 UTC 2024
    - 15K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/externalcontrolplane/externalcontrolplane.go

    		if webhookConfig.GetName() != "" &&
    			(webhookConfig.Name == defaultIstioValidatingWebhookName ||
    				strings.HasPrefix(webhookConfig.Name, istioValidatingWebhookNamePrefix)) {
    			for _, hook := range webhookConfig.Webhooks {
    				reportWebhookURL(resource, hook.Name, hook.ClientConfig)
    			}
    		}
    
    		return true
    	})
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 18 16:48:42 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  8. src/internal/types/testdata/check/importC.go

    const _ C.int = 0xff // no error due to invalid constant type
    
    type T struct {
    	Name    string
    	Ordinal int
    }
    
    func _(args []T) {
    	var s string
    	for i, v := range args {
    		cname := C.CString(v.Name)
    		args[i].Ordinal = int(C.sqlite3_bind_parameter_index(s, cname)) // no error due to i not being "used"
    		C.free(unsafe.Pointer(cname))
    	}
    }
    
    type CType C.Type
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/apply.go

    // objects and the number of objects in the manifests.
    func (h *HelmReconciler) ApplyManifest(manifest name.Manifest) (result AppliedResult, _ error) {
    	cname := string(manifest.Name)
    	crHash, err := h.getCRHash(cname)
    	if err != nil {
    		return result, err
    	}
    
    	scope.Infof("Processing resources from manifest: %s for CR %s", cname, crHash)
    	allObjects, err := object.ParseK8sObjectsFromYAMLManifest(manifest.Content)
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 6.4K bytes
    - Viewed (0)
  10. hack/boilerplate/boilerplate.py

                for dname in skipped_names:
                    if dname in dirs:
                        dirs.remove(dname)
                for dname in dirs:
                    # dirs that start with __ are ignored
                    if dname.startswith("__"):
                        dirs.remove(dname)
    
                for name in walkfiles:
                    pathname = os.path.join(root, name)
                    files.append(pathname)
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:51 UTC 2024
    - 7.2K bytes
    - Viewed (0)
Back to top