Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 164 for names_ (2.62 sec)

  1. platforms/documentation/docs/src/docs/userguide/api/kotlin_dsl.adoc

    ====
    <1> Gets a reference of type `Task` to the existing task named `check`
    <2> Registers a new untyped task named `myTask1`
    <3> Gets a reference to the existing task named `compileJava` of type `JavaCompile`
    <4> Registers a new task named `myCopy1` of type `Copy`
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 20:16:10 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1/zz_generated.conversion.go

    	out.Group = in.Group
    	if err := Convert_v1_CustomResourceDefinitionNames_To_apiextensions_CustomResourceDefinitionNames(&in.Names, &out.Names, s); err != nil {
    		return err
    	}
    	out.Scope = apiextensions.ResourceScope(in.Scope)
    	if in.Versions != nil {
    		in, out := &in.Versions, &out.Versions
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 67.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apis/apiextensions/v1beta1/zz_generated.conversion.go

    	out.Group = in.Group
    	out.Version = in.Version
    	if err := Convert_v1beta1_CustomResourceDefinitionNames_To_apiextensions_CustomResourceDefinitionNames(&in.Names, &out.Names, s); err != nil {
    		return err
    	}
    	out.Scope = apiextensions.ResourceScope(in.Scope)
    	if in.Validation != nil {
    		in, out := &in.Validation, &out.Validation
    		*out = new(apiextensions.CustomResourceValidation)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:06:46 UTC 2024
    - 71.5K bytes
    - Viewed (0)
  4. tensorflow/c/c_api_function_test.cc

    std::vector<IOSpec> M(const std::initializer_list<string>& names) {
      std::vector<IOSpec> v;
      for (const string& name : names) {
        v.push_back(IOSpec(name, DT_INVALID));
      }
      return v;
    }
    
    // Specification for an expected edge.
    // src is either:
    // - input name (as it appears in FunctionDef)
    // - name of output tensor (in nested "add:z:0" format)
    // dst is either:
    // - output name (as it appears in FunctionDef)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  5. 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)
  6. src/net/dnsclient_unix_test.go

    func mustNewName(name string) dnsmessage.Name {
    	nn, err := dnsmessage.NewName(name)
    	if err != nil {
    		panic(fmt.Sprint("creating name: ", err))
    	}
    	return nn
    }
    
    func mustQuestion(name string, qtype dnsmessage.Type, class dnsmessage.Class) dnsmessage.Question {
    	return dnsmessage.Question{
    		Name:  mustNewName(name),
    		Type:  qtype,
    		Class: class,
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 72.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/jit/deadness_analysis.cc

      for (const auto* node : graph_.op_nodes()) {
        const ControlFlowInfo& cf = control_flow_info_[node->id()];
        if (IsRootEnter(node)) {
          // Since we care only the root-level frame, full frame names are the same
          // as frame names.
          ++num_enters_for_frame[cf.frame_name];
        } else if (IsRootExit(node)) {
          ++num_exits_for_frame[cf.frame_name];
        }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfr/python/tfr_gen.py

      # actual types (i.e. class definitions).
      def __getattribute__(self, name):
        if name == 'shape' and object.__getattribute__(self, 'value') == 1:
          return TFRTypes.SHAPE
        if name == 'as_list' and object.__getattribute__(self, 'value') == 5:
          return TFRTypes.TF_TENSOR_SHAPE_FUNC
        return object.__getattribute__(self, name)
    
      def __str__(self):
        if self.value < 4:  # pylint: disable=comparison-with-callable
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 27 15:27:03 UTC 2022
    - 55.8K bytes
    - Viewed (0)
  9. src/html/template/exec_test.go

    	for _, name := range names {
    		testBadFuncName(name, t)
    	}
    }
    
    func testBadFuncName(name string, t *testing.T) {
    	t.Helper()
    	defer func() {
    		recover()
    	}()
    	New("X").Funcs(
    		FuncMap{
    			name: funcNameTestFunc,
    		},
    	)
    	// If we get here, the name did not cause a panic, which is how Funcs
    	// reports an error.
    	t.Errorf("%q succeeded incorrectly as function name", name)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 24 21:59:12 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. src/cmd/link/internal/ld/elf.go

    // Create a duplicate if one already exists with that name.
    func elfshnamedup(name string) *ElfShdr {
    	for i := 0; i < nelfstr; i++ {
    		if name == elfstr[i].s {
    			off := elfstr[i].off
    			return newElfShdr(int64(off))
    		}
    	}
    
    	Errorf(nil, "cannot find elf name %s", name)
    	errorexit()
    	return nil
    }
    
    func elfshalloc(sect *sym.Section) *ElfShdr {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 13:29:54 UTC 2024
    - 63.6K bytes
    - Viewed (0)
Back to top