Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 277 for Nname (0.05 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. pkg/config/analysis/analyzers/virtualservice/conflictingmeshgatewayhosts.go

    	_, h := sh.GetScopeAndFqdn()
    	vss := make([]*resource.Instance, 0)
    	for sf, resources := range meshGatewayHosts {
    		mghScope, mgh := sf.GetScopeAndFqdn()
    		hName := host.Name(h)
    		mghName := host.Name(mgh)
    		if mghScope != util.ExportToAllNamespaces || !hName.Matches(mghName) {
    			continue
    		}
    		vss = append(vss, resources...)
    	}
    	return vss
    }
    
    func combineResourceEntryNames(rList []*resource.Instance) string {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/stablehlo/cc/static_range_ptq.cc

      }
    
      TF_ASSIGN_OR_RETURN(
          OwningOpRef<ModuleOp> module,
          ImportSavedModel(src_saved_model_path, signature_keys, tags,
                           quantization_config, PreCalibrationComponent::kName,
                           *function_aliases, *ctx));
    
      StaticRangePtqComponent static_range_ptq_component(
          ctx.get(), &py_function_library, src_saved_model_path, signature_keys,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 12:49:45 UTC 2024
    - 6K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/common.go

    			name.CNIComponentName,
    			name.IngressComponentName,
    			name.EgressComponentName,
    		},
    		name.IstioBaseComponentName: {
    			name.PilotComponentName,
    		},
    		name.CNIComponentName: {
    			name.ZtunnelComponentName,
    		},
    	}
    
    	// InstallTree is a top down hierarchy tree of dependencies where children must wait for the parent to complete
    	// before starting installation.
    	InstallTree = make(ComponentTree)
    )
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Dec 12 17:12:54 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/net_darwin.go

    func libresolv_res_9_nsearch_trampoline()
    
    func ResNsearch(state *ResState, dname *byte, class, typ int, ans *byte, anslen int) (int, error) {
    	r1, _, errno := syscall_syscall6(abi.FuncPCABI0(libresolv_res_9_nsearch_trampoline),
    		uintptr(unsafe.Pointer(state)),
    		uintptr(unsafe.Pointer(dname)),
    		uintptr(class),
    		uintptr(typ),
    		uintptr(unsafe.Pointer(ans)),
    		uintptr(anslen))
    	if errno != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 28 13:41:21 UTC 2023
    - 4.3K bytes
    - Viewed (0)
Back to top