Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 80 for funcname (0.13 sec)

  1. 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)
  2. tensorflow/compiler/mlir/quantization/stablehlo/passes/quantization_patterns.cc

    // Example: "composite_dot_general_fn_1" => "quantized_dot_general_fn"
    std::string GetQuantizedFunctionName(const StringRef func_name) {
      return Twine(kQuantizedFuncPrefix)
          .concat(func_name.rsplit(kCompositeFuncPrefix).second)
          .str();
    }
    
    // Returns true if `xla_call_module_op` is quantized. To be considered
    // quantized, it should meet three conditions:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 06:04:36 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  3. src/go/types/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)
  4. tensorflow/compiler/mlir/tensorflow/transforms/sparsecore/embedding_sequencing.cc

        StringAttr replication_attr, TF::TPUReplicateMetadataOp metadata_op,
        TF::TPUCompilationResultOp compilation_op, func::FuncOp parent_func,
        const std::string& func_name, Operation** caller) {
      // Move the given set of 'ops' into it's own function and replace them with a
      // call to that function ('caller'). if 'metadata_op' and 'compilation_op' are
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 39.4K bytes
    - Viewed (0)
  5. src/cmd/internal/dwarf/dwarf.go

    	}
    
    	abbrev := DW_ABRV_FUNCTION_ABSTRACT
    	Uleb128put(ctxt, s.Absfn, int64(abbrev))
    
    	fullname := s.Name
    	if strings.HasPrefix(s.Name, `"".`) {
    		return fmt.Errorf("unqualified symbol name: %v", s.Name)
    	}
    	putattr(ctxt, s.Absfn, abbrev, DW_FORM_string, DW_CLS_STRING, int64(len(fullname)), fullname)
    
    	// DW_AT_inlined value
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 06 15:23:18 UTC 2024
    - 43K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    		extLen: len(benchmarkName("", maxprocs)),
    	}
    	var bs []InternalBenchmark
    	for _, Benchmark := range benchmarks {
    		if _, matched, _ := ctx.match.fullName(nil, Benchmark.Name); matched {
    			bs = append(bs, Benchmark)
    			benchName := benchmarkName(Benchmark.Name, maxprocs)
    			if l := len(benchName) + ctx.extLen + 1; l > ctx.maxLen {
    				ctx.maxLen = l
    			}
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. operator/pkg/helmreconciler/prune.go

    	}
    	metrics.ResourceDeletionTotal.
    		With(metrics.ResourceKindLabel.Value(util.GKString(objGvk.GroupKind()))).
    		Increment()
    	h.addPrunedKind(objGvk.GroupKind())
    	metrics.RemoveResource(obj.FullName(), objGvk.GroupKind())
    	h.opts.Log.LogAndPrintf("  Removed %s.", oh)
    	return nil
    }
    
    // RemoveObject removes object with objHash in componentName from the object cache.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 15.9K bytes
    - Viewed (0)
  8. istioctl/pkg/tag/tag.go

    	res, err := sa.Analyze(make(chan struct{}))
    	if err != nil {
    		return err
    	}
    	relevantMessages := diag.Messages{}
    	for _, msg := range res.Messages.FilterOutLowerThan(diag.Error) {
    		if msg.Resource.Metadata.FullName.Name == resource.LocalName(name) {
    			relevantMessages = append(relevantMessages, msg)
    		}
    	}
    	if len(relevantMessages) > 0 {
    		o, err := formatting.Print(relevantMessages, formatting.LogFormat, false)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 08:32:06 UTC 2024
    - 16.3K bytes
    - Viewed (0)
  9. operator/pkg/helmreconciler/reconciler.go

    func filterOutBasedOnResources(ms diag.Messages, resources object.K8sObjects) diag.Messages {
    	outputMessages := diag.Messages{}
    	for _, m := range ms {
    		for _, rs := range resources {
    			if rs.Name == m.Resource.Metadata.FullName.Name.String() {
    				outputMessages = append(outputMessages, m)
    				break
    			}
    		}
    	}
    	return outputMessages
    }
    
    func (h *HelmReconciler) networkName() string {
    	if h.iop.Spec.GetValues() == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Feb 22 08:32:23 UTC 2024
    - 22K bytes
    - Viewed (0)
  10. src/crypto/x509/parser.go

    				//     reasons                 [1]     ReasonFlags OPTIONAL,
    				//     cRLIssuer               [2]     GeneralNames OPTIONAL }
    				//
    				// DistributionPointName ::= CHOICE {
    				//     fullName                [0]     GeneralNames,
    				//     nameRelativeToCRLIssuer [1]     RelativeDistinguishedName }
    				val := cryptobyte.String(e.Value)
    				if !val.ReadASN1(&val, cryptobyte_asn1.SEQUENCE) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:00:16 UTC 2024
    - 38.5K bytes
    - Viewed (0)
Back to top