Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 309 for Nname (0.28 sec)

  1. 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)
  2. pkg/kube/inject/testdata/inject/truncate-canonical-name-pod.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      # more than 63 characters
      name: helloworld-helloworld-helloworld-helloworld-helloworld-helloworld
    spec:
      containers:
        - name: hello
          image: "fake.docker.io/google-samples/hello-go-gke:1.0"
          ports:
            - name: http
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 02 08:39:34 UTC 2024
    - 299 bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/graph-function-name-bug.pbtxt

        }
      }
      function {
        signature {
          name: "foo5"
        }
      }
      function {
        signature {
          name: "foo6"
        }
      }
      function {
        signature {
          name: "foo7"
        }
      }
      function {
        signature {
          name: "foo8"
        }
      }
      function {
        signature {
          name: "foo9"
        }
      }
      function {
        signature {
          name: "foo10"
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 30 06:52:55 UTC 2023
    - 2K bytes
    - Viewed (0)
  7. src/net/lookup_unix.go

    }
    
    func (r *Resolver) lookupCNAME(ctx context.Context, name string) (string, error) {
    	order, conf := systemConf().hostLookupOrder(r, name)
    	if order == hostLookupCgo {
    		if cname, err, ok := cgoLookupCNAME(ctx, name); ok {
    			return cname, err
    		}
    	}
    	return r.goLookupCNAME(ctx, name, order, conf)
    }
    
    func (r *Resolver) lookupSRV(ctx context.Context, service, proto, name string) (string, []*SRV, error) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  8. 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)
  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. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/DescribablesTest.groovy

            value.capitalizedDisplayName == "F two three"
        }
    
        def "creates from type and name"() {
            expect:
            def value = Describables.withTypeAndName("some type", "name")
            value.displayName == "some type 'name'"
            value.toString() == "some type 'name'"
            value.capitalizedDisplayName == "Some type 'name'"
        }
    
        def "creates from description and value"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 5.1K bytes
    - Viewed (0)
Back to top