Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 62 for names_ (0.13 sec)

  1. src/os/os_test.go

    	if err != nil {
    		t.Fatal(err)
    	}
    	names1, err := df.Readdirnames(1)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if _, err = df.Seek(0, 0); err != nil {
    		t.Fatal(err)
    	}
    	names2, err := df.Readdirnames(0)
    	if err != nil {
    		t.Fatal(err)
    	}
    	if len(names2) != 3 {
    		t.Fatalf("first names: %v, second names: %v", names1, names2)
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 83.1K bytes
    - Viewed (0)
  2. src/cmd/cgo/gcc.go

    			s := n.C[:len(n.C)-3] + "GetTypeID"
    			n := &Name{Go: s, C: s}
    			names = append(names, n)
    			optional[n] = true
    		}
    
    		// Otherwise, we'll need to find out from gcc.
    		names = append(names, n)
    	}
    
    	// Bypass gcc if there's nothing left to find out.
    	if len(names) == 0 {
    		return needType
    	}
    
    	// Coerce gcc into telling us whether each name is a type, a value, or undeclared.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
  3. src/go/build/build.go

    //	name_$(GOOS)_test.*
    //	name_$(GOARCH)_test.*
    //	name_$(GOOS)_$(GOARCH)_test.*
    //
    // Exceptions:
    // if GOOS=android, then files with GOOS=linux are also matched.
    // if GOOS=illumos, then files with GOOS=solaris are also matched.
    // if GOOS=ios, then files with GOOS=darwin are also matched.
    func (ctxt *Context) goodOSArchFile(name string, allTags map[string]bool) bool {
    	name, _, _ = strings.Cut(name, ".")
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    	//
    	// Namespace, Service, and Port names can contain [a-z0-9-] (with some additional
    	// restrictions that aren't relevant here).
    	//
    	// Protocol is /(tcp|udp|sctp)/.
    	//
    	// Thus, we can safely use all Namespace names, Service names, protocol values,
    	// and Port names directly in nftables chain names (though note that this assumes
    	// that the chain name won't *start* with any of those strings, since that might
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. subprojects/core-api/src/main/java/org/gradle/api/Project.java

         * starting the build.</p>
         *
         * @return The default task names. Returns an empty list if this project has no default tasks.
         */
        List<String> getDefaultTasks();
    
        /**
         * <p>Sets the names of the default tasks of this project. These are used when no tasks names are provided when
         * starting the build.</p>
         *
         * @param defaultTasks The default task names.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 04:56:22 UTC 2024
    - 74.3K bytes
    - Viewed (0)
  6. cmd/iam-store.go

    	iamSTSAccountsMap map[string]UserIdentity
    	// map of STS access key to policy names
    	iamSTSPolicyMap *xsync.MapOf[string, MappedPolicy]
    
    	// map of group names to group info
    	iamGroupsMap map[string]GroupInfo
    	// map of user names to groups they are a member of
    	iamUserGroupMemberships map[string]set.StringSet
    	// map of group names to policy names
    	iamGroupPolicyMap *xsync.MapOf[string, MappedPolicy]
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 75.8K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/lite/flatbuffer_import.cc

      if (tensor.name.empty()) {
        return base;
      }
      return mlir::NameLoc::get(builder.getStringAttr(tensor.name), base);
    }
    
    // Create the MLIR Location corresponding to a given op. This is an
    // experimental/debugging feature and production code should not rely on names
    // of intermediate tensors since importer doesn't guarantee to preserve tensor
    // names except output tensors.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 21 18:21:50 UTC 2024
    - 66.8K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/debug.go

    		cloReg = reg.ObjNum()
    		if loggingEnabled {
    			state.logf("needCloCtx is true for func %q, cloreg=%v\n",
    				f.Name, reg)
    		}
    	}
    
    	addVarSlot := func(name *ir.Name, typ *types.Type) {
    		sl := LocalSlot{N: name, Type: typ, Off: 0}
    		rval.Vars = append(rval.Vars, name)
    		rval.Slots = append(rval.Slots, sl)
    		slid := len(rval.VarSlots)
    		rval.VarSlots = append(rval.VarSlots, []SlotID{SlotID(slid)})
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 58.4K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

            return result.toString();
        }
    
        @Override
        public GradleExecuter withTasks(String... names) {
            return withTasks(Arrays.asList(names));
        }
    
        @Override
        public GradleExecuter withTasks(List<String> names) {
            tasks.clear();
            tasks.addAll(names);
            return this;
        }
    
        @Override
        public GradleExecuter withDaemonIdleTimeoutSecs(int secs) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. src/cmd/dist/test.go

    	if err != nil {
    		return true // conservatively
    	}
    	defer d.Close()
    	names, err := d.Readdirnames(-1)
    	if err != nil {
    		return true // conservatively
    	}
    	for _, name := range names {
    		if !strings.HasSuffix(name, "_test.go") {
    			continue
    		}
    		slurp, err := os.ReadFile(filepath.Join(pkgDir, name))
    		if err != nil {
    			return true // conservatively
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
Back to top