Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 64 for overlap (0.24 sec)

  1. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

          const T1& expected,
          const T2& actual,
          // The following line prevents this overload from being considered if T2
          // is not a pointer type.  We need this because ASSERT_EQ(NULL, my_ptr)
          // expands to Compare("", "", NULL, my_ptr), which requires a conversion
          // to match the Secret* in the other overload, which would otherwise make
          // this template match better.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  2. maven-core/src/main/java/org/apache/maven/project/DefaultProjectBuilder.java

            BuildSession(ProjectBuildingRequest request, boolean localProjects) {
                this.request = request;
                this.session =
                        RepositoryUtils.overlay(request.getLocalRepository(), request.getRepositorySession(), repoSystem);
                InternalSession.from(session);
                this.repositories = RepositoryUtils.toRepos(request.getRemoteRepositories());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 16:34:29 UTC 2024
    - 57.1K bytes
    - Viewed (0)
  3. cmd/erasure-object.go

    func (er erasureObjects) DecomTieredObject(ctx context.Context, bucket, object string, fi FileInfo, opts ObjectOptions) error {
    	if opts.UserDefined == nil {
    		opts.UserDefined = make(map[string]string)
    	}
    	// overlay Erasure info for this set of disks
    	storageDisks := er.getDisks()
    	// Get parity and data drive count based on storage class metadata
    	parityDrives := globalStorageClass.GetParityForSC(opts.UserDefined[xhttp.AmzStorageClass])
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  4. src/runtime/mgc.go

    	// in there too.
    	work.cpuStats.accumulateGCPauseTime(now-stw.finishedStopping, work.maxprocs)
    	work.cpuStats.accumulate(now, true)
    
    	// Compute overall GC CPU utilization.
    	// Omit idle marking time from the overall utilization here since it's "free".
    	memstats.gc_cpu_fraction = float64(work.cpuStats.GCTotalTime-work.cpuStats.GCIdleTime) / float64(work.cpuStats.TotalTime)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiextensions-apiserver/pkg/apiserver/schema/cel/celcoststability_test.go

    				"self.listMap.exists_one(m, has(m.v2) && m.v2 == 'z')":         12,
    				"self.listMap.filter(m, has(m.v2) && m.v2 == 'z').size() == 1": 24,
    				// undocumented overload of map that takes a filter argument. This is the same as .filter().map()
    				"self.listMap.map(m, has(m.v2) && m.v2 == 'z', m.v2).size() == 1":           25,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 19:20:16 UTC 2024
    - 80.2K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

                boxType(methodVisitor, propertyClass);
            }
            invokeStateSetMethod(methodVisitor);
    
            finishVisitingMethod(methodVisitor);
        }
    
        // the overload of type Object for Groovy coercions:  public void setFoo(Object foo)
        private void writeTypeConvertingSetter(ClassVisitor visitor, Type generatedType, Class<?> viewClass, ModelProperty<?> property) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/syntax/parser.go

    	}
    
    	return p.binaryExpr(nil, 0)
    }
    
    // Expression = UnaryExpr | Expression binary_op Expression .
    func (p *parser) binaryExpr(x Expr, prec int) Expr {
    	// don't trace binaryExpr - only leads to overly nested trace output
    
    	if x == nil {
    		x = p.unaryExpr()
    	}
    	for (p.tok == _Operator || p.tok == _Star) && p.prec > prec {
    		t := new(Operation)
    		t.pos = p.pos()
    		t.Op = p.op
    		tprec := p.prec
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 62.9K bytes
    - Viewed (0)
  8. src/cmd/go/internal/test/test.go

    		// before it exits. We set the minimum at 5 seconds to account for the OS
    		// overhead, and scale it up from there proportional to the overall test
    		// timeout on the assumption that the time to write and read a goroutine
    		// dump from a timed-out test process scales roughly with the overall
    		// running time of the test.
    		//
    		// This is probably too generous when the timeout is very long, but it seems
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 16 14:34:32 UTC 2024
    - 71.9K bytes
    - Viewed (0)
  9. guava/src/com/google/common/reflect/TypeToken.java

       * @param typeArg the actual type to substitute
       */
      /*
       * TODO(cpovirk): Is there any way for us to support TypeParameter instances for type parameters
       * that have nullable bounds? See discussion on the other overload of this method.
       */
      public final <X> TypeToken<T> where(TypeParameter<X> typeParam, Class<X> typeArg) {
        return where(typeParam, of(typeArg));
      }
    
      /**
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. pkg/controller/volume/persistentvolume/pv_controller.go

    	// claim to two volumes. The controller would recover from this (due to
    	// version errors in API server and other checks in this controller),
    	// however overall speed of multi-worker controller would be lower than if
    	// it runs single thread only.
    	claimQueue  *workqueue.Typed[string]
    	volumeQueue *workqueue.Typed[string]
    
    	// Map of scheduled/running operations.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
Back to top