Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 159 for Nname (0.07 sec)

  1. src/archive/tar/common.go

    // Passing an instance of this to [FileInfoHeader] permits the caller
    // to avoid a system-dependent name lookup by specifying the Uname and Gname directly.
    type FileInfoNames interface {
    	fs.FileInfo
    	// Uname should give a user name.
    	Uname() (string, error)
    	// Gname should give a group name.
    	Gname() (string, error)
    }
    
    // isHeaderOnlyType checks if the given type flag is of the type that has no
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 15 16:01:50 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/syntax/printer.go

    	case nil:
    		// we should not reach here but don't crash
    
    	// expressions and types
    	case *BadExpr:
    		p.print(_Name, "<bad expr>")
    
    	case *Name:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *BasicLit:
    		p.print(_Name, n.Value) // _Name requires actual value following immediately
    
    	case *FuncLit:
    		p.print(n.Type, blank)
    		if n.Body != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 24 07:17:27 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  3. src/net/lookup_plan9.go

    	}
    	return 0, &DNSError{Err: "unknown port", Name: errNetwork + "/" + service, IsNotFound: true}
    }
    
    func (r *Resolver) lookupCNAME(ctx context.Context, name string) (cname string, err error) {
    	if order, conf := systemConf().hostLookupOrder(r, name); order != hostLookupCgo {
    		return r.goLookupCNAME(ctx, name, order, conf)
    	}
    
    	lines, err := queryDNS(ctx, name, "cname")
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 04 17:08:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. pkg/kubelet/cm/node_container_manager_linux.go

    		}
    	}
    
    	cgroupConfig := &CgroupConfig{
    		Name:               cName,
    		ResourceParameters: rp,
    	}
    	klog.V(4).InfoS("Enforcing limits on cgroup", "cgroupName", cName, "cpuShares", cgroupConfig.ResourceParameters.CPUShares, "memory", cgroupConfig.ResourceParameters.Memory, "pidsLimit", cgroupConfig.ResourceParameters.PidsLimit)
    	if err := cgroupManager.Validate(cgroupConfig.Name); err != nil {
    		return err
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 21 10:18:16 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/ssa/compile.go

    	f.dumpFileSeq++
    	fname := fmt.Sprintf("%s_%02d__%s.dump", f.Name, int(f.dumpFileSeq), phaseName)
    	fname = strings.Replace(fname, " ", "_", -1)
    	fname = strings.Replace(fname, "/", "_", -1)
    	fname = strings.Replace(fname, ":", "_", -1)
    
    	if ssaDir := os.Getenv("GOSSADIR"); ssaDir != "" {
    		fname = filepath.Join(ssaDir, fname)
    	}
    
    	fi, err := os.Create(fname)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:55:18 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  6. src/html/template/escape.go

    	// identifier.
    	dname := c.mangle(name)
    	e.called[dname] = true
    	if out, ok := e.output[dname]; ok {
    		// Already escaped.
    		return out, dname
    	}
    	t := e.template(name)
    	if t == nil {
    		// Two cases: The template exists but is empty, or has never been mentioned at
    		// all. Distinguish the cases in the error messages.
    		if e.ns.set[name] != nil {
    			return context{
    				state: stateError,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 02 15:18:39 UTC 2023
    - 32.4K bytes
    - Viewed (0)
  7. platforms/native/language-native/src/test/groovy/org/gradle/language/nativeplatform/internal/incremental/SourceParseAndResolutionTest.groovy

                #define PREFIX HEADER_
                #define SUFFIX NAME
                #include HEADER(PREFIX, SUFFIX) // replaced with HEADER_(HEADER_, NAME) then HEADER_NAME then "hello.h"
            """
    
            expect:
            resolve() == [header]
        }
    
        def "can produce a macro function call by concatenating name and args passed as param"() {
            given:
            sourceFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 21.5K bytes
    - Viewed (0)
  8. src/test/java/jcifs/tests/AllTests.java

         * @throws IOException
         */
        protected static void loadConfigFile ( Path config, String[] applyMutations, Map<String, Map<String, String>> configs ) throws IOException {
            String fname = config.getFileName().toString();
            if ( !fname.endsWith(".conf") ) {
                return;
            }
            Properties props = new Properties();
            try ( FileChannel ch = FileChannel.open(config, StandardOpenOption.READ);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Tue Jul 07 10:52:42 UTC 2020
    - 14.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/aot/compile.cc

      }
    
      return CompileXla(client, computation, aot_opts, compile_result);
    }
    
    static Status ReadProtoFile(const string& fname, protobuf::Message* proto) {
      if (absl::EndsWith(fname, ".pbtxt")) {
        return ReadTextProto(Env::Default(), fname, proto);
      } else {
        return ReadBinaryProto(Env::Default(), fname, proto);
      }
    }
    
    static absl::once_flag targets_init;
    
    static void InitializeTargets() {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 08:28:57 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  10. src/archive/tar/writer_test.go

    	for _, test := range []struct {
    		name string
    		h    *Header
    	}{{
    		name: "name too long",
    		h:    &Header{Name: strings.Repeat("a", maxSpecialFileSize)},
    	}, {
    		name: "linkname too long",
    		h:    &Header{Linkname: strings.Repeat("a", maxSpecialFileSize)},
    	}, {
    		name: "uname too long",
    		h:    &Header{Uname: strings.Repeat("a", maxSpecialFileSize)},
    	}, {
    		name: "gname too long",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 38.7K bytes
    - Viewed (0)
Back to top