Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 131 for Boundaries (0.19 sec)

  1. tensorflow/compiler/mlir/quantization/stablehlo/passes/lift_quantizable_spots_as_functions.cc

    }
    
    inline void TrimTrailingWhitespaces(std::string& str) {
      while (!str.empty() && str.back() == ' ') {
        str.pop_back();
      }
    }
    
    // Lifts quantizable units as separate functions, thereby identifying the
    // boundaries of quantizable subgraphs. `QuantizationSpecs` influences how
    // quantizable units are lifted.
    //
    // FileCheck test cases using various `QuantizationSpecs` can be seen at
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 10 04:07:09 UTC 2024
    - 9.3K bytes
    - Viewed (0)
  2. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/internal/NativeComponents.java

                    buildDependentComponents.dependsOn(buildDependents);
                }
                // Wire build dependent binaries tasks dependencies
                // Defer dependencies gathering as we need to resolve across project's boundaries
                assembleDependents.dependsOn(new Callable<Iterable<Task>>() {
                    @Override
                    public Iterable<Task> call() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 11K bytes
    - Viewed (0)
  3. src/context/context.go

    // license that can be found in the LICENSE file.
    
    // Package context defines the Context type, which carries deadlines,
    // cancellation signals, and other request-scoped values across API boundaries
    // and between processes.
    //
    // Incoming requests to a server should create a [Context], and outgoing
    // calls to servers should accept a Context. The chain of function
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 23.7K bytes
    - Viewed (0)
  4. pkg/kube/krt/core.go

    	// called. Typically, usage of Register is done internally in krt via composition of Collections with Transformations
    	// (NewCollection, NewManyCollection, NewSingleton); however, at boundaries of the system (connecting to something not
    	// using krt), registering directly is expected.
    	Register(f func(o Event[T])) Syncer
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 10 23:33:56 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  5. src/cmd/go/internal/modload/search.go

    						fmt.Fprintf(os.Stderr, "warning: ignoring symlink %s\n", pkgDir)
    					}
    				}
    				return nil
    			}
    
    			if !want {
    				return filepath.SkipDir
    			}
    			// Stop at module boundaries.
    			if (prune&pruneGoMod != 0) && pkgDir != root {
    				if fi, err := os.Stat(filepath.Join(pkgDir, "go.mod")); err == nil && !fi.IsDir() {
    					return filepath.SkipDir
    				}
    			}
    
    			if !have[name] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:15 UTC 2023
    - 7.9K bytes
    - Viewed (0)
  6. src/os/file_plan9.go

    		return 0, io.EOF
    	}
    	return n, e
    }
    
    // write writes len(b) bytes to the File.
    // It returns the number of bytes written and an error, if any.
    // Since Plan 9 preserves message boundaries, never allow
    // a zero-byte write.
    func (f *File) write(b []byte) (n int, err error) {
    	if err := f.writeLock(); err != nil {
    		return 0, err
    	}
    	defer f.writeUnlock()
    	if len(b) == 0 {
    		return 0, nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 30 15:35:30 UTC 2024
    - 16K bytes
    - Viewed (0)
  7. pkg/monitoring/monitoring.go

    		v := metric.WithView(metric.NewView(
    			metric.Instrument{Name: name},
    			metric.Stream{Aggregation: metric.AggregationExplicitBucketHistogram{
    				Boundaries: def.Bounds,
    			}},
    		))
    		opts = append(opts, v)
    	}
    	return opts
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 24 03:31:28 UTC 2023
    - 9.5K bytes
    - Viewed (0)
  8. src/cmd/go/internal/modfetch/repo.go

    // in its root directory, along with a new requirement cycle.
    // The ability to shift module boundaries in this way is expected to be
    // important in large-scale program refactorings, similar to the ones
    // described in https://talks.golang.org/2016/refactor.article.
    //
    // The possibility of shifting module boundaries reemphasizes
    // that you must know both the module path and its version
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 16:36:19 UTC 2023
    - 15.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/legalize_patterns.td

    def LegalizeReal : Pat<(TF_RealOp $arg), (TFL_RealOp $arg)>;
    
    def LegalizeImag : Pat<(TF_ImagOp $arg), (TFL_ImagOp $arg)>;
    
    def LegalizeBucketize : Pat<
      (TF_BucketizeOp $input, F32ArrayAttr:$boundaries),
      (TFL_BucketizeOp $input, $boundaries)>;
    
    def LegalizeRandomUniform : Pat<
      (TF_RandomUniformOp $shape, $seed, $seed2),
      (TFL_RandomUniformOp $shape, (convertIntAttrTo64Bit $seed),
       (convertIntAttrTo64Bit $seed2))>;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 04 13:30:42 UTC 2024
    - 28.5K bytes
    - Viewed (0)
  10. src/net/http/header.go

    // returned without modifications.
    func CanonicalHeaderKey(s string) string { return textproto.CanonicalMIMEHeaderKey(s) }
    
    // hasToken reports whether token appears with v, ASCII
    // case-insensitive, with space or comma boundaries.
    // token must be all lowercase.
    // v may contain mixed cased.
    func hasToken(v, token string) bool {
    	if len(token) > len(v) || token == "" {
    		return false
    	}
    	if v == token {
    		return true
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 21 22:14:00 UTC 2024
    - 7.6K bytes
    - Viewed (0)
Back to top