Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 5 of 5 for startPos (0.38 sec)

  1. src/crypto/x509/verify_test.go

    		roots:         []string{startComRoot},
    		currentTime:   1302726541,
    
    		// The StartCom root is not trusted by Windows when the default
    		// ServerAuth EKU is requested.
    		systemSkip: true,
    
    		expectedChains: [][]string{
    			{"dnssec-exp", "StartCom Class 1", "StartCom Certification Authority"},
    		},
    	},
    	{
    		name:          "dnssec-exp/AnyEKU",
    		leaf:          dnssecExpLeaf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/horizontal_test.go

    	finalPods := int32(math.Ceil(resourcesUsedRatio * float64(startPods)))
    
    	// To breach tolerance we will create a utilization ratio difference of tolerance to usageRatioToleranceValue)
    	tc1 := testCase{
    		minReplicas:             0,
    		maxReplicas:             1000,
    		specReplicas:            startPods,
    		statusReplicas:          startPods,
    		expectedDesiredReplicas: finalPods,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 14:24:16 UTC 2024
    - 199.3K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo.cc

        Value start_op = rewriter.create<TF::ConstOp>(iota_op.getLoc(), start);
        Value limit_op = rewriter.create<TF::ConstOp>(iota_op.getLoc(), limit);
        Value delta_op = rewriter.create<TF::ConstOp>(iota_op.getLoc(), delta);
        Value result = rewriter.create<TF::RangeOp>(iota_op.getLoc(), range_type,
                                                    start_op, limit_op, delta_op);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 154.9K bytes
    - Viewed (0)
  4. cmd/server_test.go

    	s.testServer.cancel = cancel
    	s.testServer = initTestServerWithBackend(ctx, c, s.testServer, s.testServer.Obj, s.testServer.rawDiskPaths)
    	if s.secure {
    		s.testServer.Server.StartTLS()
    	} else {
    		s.testServer.Server.Start()
    	}
    
    	s.client = s.testServer.Server.Client()
    	s.endPoint = s.testServer.Server.URL
    }
    
    func (s *TestSuiteCommon) TearDownSuite(c *check) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  5. src/runtime/proc.go

    		}
    	}
    	lockInit(&pp.timers.mu, lockRankTimers)
    
    	// This P may get timers when it starts running. Set the mask here
    	// since the P may not go through pidleget (notably P 0 on startup).
    	timerpMask.set(id)
    	// Similarly, we may not go through pidleget before this P starts
    	// running if it is P 0 on startup.
    	idlepMask.clear(id)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top