Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 338 for pname (0.19 sec)

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

    	if a.SkipServiceCheck {
    		return
    	}
    	for name, whs := range webhooks {
    		for _, wh := range whs {
    			if wh.ClientConfig.Service == nil {
    				// it is an url, skip it
    				continue
    			}
    			fname := resource.NewFullName(
    				resource.Namespace(wh.ClientConfig.Service.Namespace),
    				resource.LocalName(wh.ClientConfig.Service.Name))
    			if !context.Exists(gvk.Service, fname) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sun May 05 03:44:57 UTC 2024
    - 6K bytes
    - Viewed (0)
  10. src/runtime/syscall_solaris.go

    	if int(call.r1) != -1 {
    		call.err = 0
    	}
    	return call.r1, call.err
    }
    
    //go:linkname syscall_gethostname
    func syscall_gethostname() (name string, err uintptr) {
    	cname := new([_MAXHOSTNAMELEN]byte)
    	var args = [2]uintptr{uintptr(unsafe.Pointer(&cname[0])), _MAXHOSTNAMELEN}
    	call := libcall{
    		fn:   uintptr(unsafe.Pointer(&libc_gethostname)),
    		n:    2,
    		args: uintptr(unsafe.Pointer(&args[0])),
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 06 18:49:01 UTC 2023
    - 8.4K bytes
    - Viewed (0)
Back to top