Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 80 for funcname (0.92 sec)

  1. src/cmd/compile/internal/walk/builtin.go

    	if size.Type().IsKind(types.TIDEAL) || size.Type().Size() <= types.Types[types.TUINT].Size() {
    		fnname = "makechan"
    		argtype = types.Types[types.TINT]
    	}
    
    	return mkcall1(chanfn(fnname, 1, n.Type()), n.Type(), init, reflectdata.MakeChanRType(base.Pos, n), typecheck.Conv(size, argtype))
    }
    
    // walkMakeMap walks an OMAKEMAP node.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 22:35:22 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  2. pkg/kubelet/pod/pod_manager.go

    	pm.lock.RLock()
    	defer pm.lock.RUnlock()
    
    	fullName := kubecontainer.GetPodFullName(aPod)
    	if kubetypes.IsMirrorPod(aPod) {
    		return pm.podByFullName[fullName], aPod, true
    	}
    	return aPod, pm.mirrorPodByFullName[fullName], false
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:06:00 UTC 2024
    - 11.9K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/validation.go

    	}
    
    	if lvl == rootLevel {
    		// metadata is a shallow copy. We can mutate it.
    		_, foundName := s.Properties["name"]
    		_, foundGenerateName := s.Properties["generateName"]
    		if foundName && foundGenerateName && len(s.Properties) == 2 {
    			s.Properties = nil
    		} else if (foundName || foundGenerateName) && len(s.Properties) == 1 {
    			s.Properties = nil
    		}
    		s.Type = ""
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 20 18:21:31 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/internal/driver/html/stacks.js

        for (const p of new URLSearchParams(window.location.search)) {
          params.set(p[0], p[1]);
        }
    
        // Update params to include src.
        let v = pprofQuoteMeta(stacks.Sources[src].FullName);
        if (param != 'f' && param != 'sf') { // old f,sf values are overwritten
          // Add new source to current parameter value.
          const old = params.get(param);
          if (old && old != '') {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  5. src/testing/fuzz.go

    			}
    			for _, ft := range fuzzTests {
    				if shouldFailFast() {
    					break
    				}
    				testName, matched, _ := tctx.match.fullName(nil, ft.Name)
    				if !matched {
    					continue
    				}
    				if mFuzz != nil {
    					if _, fuzzMatched, _ := mFuzz.fullName(nil, ft.Name); fuzzMatched {
    						// If this will be fuzzed, then don't run the seed corpus
    						// right now. That will happen later.
    						continue
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 26 22:55:25 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  6. tensorflow/c/c_api_experimental.cc

      delete lib_handle;
    }
    
    void TF_GraphRemoveFunction(TF_Graph* g, const char* func_name,
                                TF_Status* status) {
      tensorflow::mutex_lock l(g->mu);
      status->status = g->graph.mutable_flib_def()->RemoveFunction(func_name);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 29.4K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/c/c_api_unified_experimental_mlir.cc

      *f = new MlirFunction(std::move(context_), std::move(module_), func_);
      return absl::OkStatus();
    }
    
    extern "C" {
    TracingContext* MlirTracingFactory(const char* fn_name, TF_Status* s) {
      return new MlirFunctionContext(fn_name);
    }
    }
    
    }  // namespace
    }  // namespace TF
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/types2/object.go

    	//   proposal to tighten NewFunc's precondition.
    	// For now, return a trivial signature.
    	return new(Signature)
    }
    
    // FullName returns the package- or receiver-type-qualified name of
    // function or method obj.
    func (obj *Func) FullName() string {
    	var buf bytes.Buffer
    	writeFuncName(&buf, obj, nil)
    	return buf.String()
    }
    
    // Scope returns the scope of the function's body block.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 07 20:08:23 UTC 2024
    - 20.1K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/io/Files.java

       * filesystem due to NTFS's <a href="https://goo.gl/vTpJi4">Alternate Data Streams</a>.
       *
       * @since 11.0
       */
      public static String getFileExtension(String fullName) {
        checkNotNull(fullName);
        String fileName = new File(fullName).getName();
        int dotIndex = fileName.lastIndexOf('.');
        return (dotIndex == -1) ? "" : fileName.substring(dotIndex + 1);
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 33.1K bytes
    - Viewed (0)
  10. src/net/http/fs.go

    	if err != nil {
    		return nil, errors.New("http: invalid or unsafe file path")
    	}
    	dir := string(d)
    	if dir == "" {
    		dir = "."
    	}
    	fullName := filepath.Join(dir, path)
    	f, err := os.Open(fullName)
    	if err != nil {
    		return nil, mapOpenError(err, fullName, filepath.Separator, os.Stat)
    	}
    	return f, nil
    }
    
    // A FileSystem implements access to a collection of named files.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 17:06:47 UTC 2024
    - 31.1K bytes
    - Viewed (0)
Back to top