Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 124 for Boundaries (0.34 sec)

  1. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/strategy/DefaultVersionComparatorTest.groovy

            expect:
            compare("1.0", "1_0") == 0
            compare("1_0", "1-0") == 0
            compare("1-0", "1+0") == 0
            compare("1.a.2", "1a2") == 0 // number-word and word-number boundaries are considered separators
        }
    
        def "leading zeros in numeric parts are ignored"() {
            expect:
            compare("01.0", "1.0") == 0
            compare("1.0", "01.0") == 0
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 8.4K bytes
    - Viewed (0)
  2. src/runtime/trace/annotation.go

    	s := &Task{id: id}
    	return context.WithValue(pctx, traceContextKey{}, s), s
    
    	// We allocate a new task even when
    	// the tracing is disabled because the context and task
    	// can be used across trace enable/disable boundaries,
    	// which complicates the problem.
    	//
    	// For example, consider the following scenario:
    	//   - trace is enabled.
    	//   - trace.WithRegion is called, so a new context ctx
    	//     with a new region is created.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  3. platforms/jvm/scala/src/integTest/groovy/org/gradle/scala/compile/ZincScalaCompilerIntegrationTest.groovy

            house.lastModified() != old(house.lastModified())
            other.lastModified() == old(other.lastModified())
        }
    
        def "compiles Scala incrementally across project boundaries"() {
            file("settings.gradle") << """include 'a', 'b'"""
            // overwrite the build file from setup
            file("build.gradle").text = """
                subprojects {
                    apply plugin: 'scala'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 15:43:33 UTC 2023
    - 8.9K bytes
    - Viewed (0)
  4. .github/ISSUE_TEMPLATE/feature_addition_request.yaml

            able to discuss the full details of what you're working on.
    
    
            But Guava aims to provide features that are useful across boundaries of projects, companies,
            or even industries &mdash; utilities useful for a sizable proportion of all Java programmers
            everywhere. If you can give enough detail such that any of us can imagine coming across
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Nov 17 18:47:47 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/transforms/pin_ops_with_side_effects.cc

    //     function/subgraph calls as black boxes (i.e., all variables would
    //     be assumed to be read and modified within control operations)
    // (2) Extend the variable dependency analysis across function boundaries.
    class PinOpsWithSideEffectsPass
        : public impl::PinOpsWithSideEffectsPassBase<PinOpsWithSideEffectsPass> {
     public:
      MLIR_DEFINE_EXPLICIT_INTERNAL_INLINE_TYPE_ID(PinOpsWithSideEffectsPass)
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 7K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top