Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for countpwg (0.19 sec)

  1. subprojects/core/src/integTest/groovy/org/gradle/api/services/BuildServiceIntegrationTest.groovy

                            println("Skipping counting as service not available")
                        }
                    }
                }
                task missingOptionalService(type: Consumer) {}
            """
            enableStableConfigurationCache()
    
            when:
            succeeds 'missingOptionalService'
    
            then:
            outputContains("Skipping counting as service not available")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 19:15:46 UTC 2024
    - 61K bytes
    - Viewed (0)
  2. src/cmd/compile/internal/ssa/prove.go

    			}
    			indVars[v.entry] = v
    			continue
    		} else {
    			// Since this induction variable is not used for anything but counting the iterations,
    			// no point in putting it into the facts table.
    		}
    
    		// try to rewrite to a downward counting loop checking against start if the
    		// loop body does not depends on ind or nxt and end is known before the loop.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 04 17:30:21 UTC 2024
    - 48.9K bytes
    - Viewed (0)
  3. pkg/controller/job/job_controller.go

    	}()
    
    	if job.Status.UncountedTerminatedPods == nil {
    		job.Status.UncountedTerminatedPods = &batch.UncountedTerminatedPods{}
    	}
    
    	// Check the expectations of the job before counting active pods, otherwise a new pod can sneak in
    	// and update the expectations after we've retrieved active pods from the store. If a new pod enters
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  4. src/regexp/testdata/testregex.c

    T("    Unset endpoints (offset -2) are denoted by X. {x}(o:n) denotes a\n");
    T("    matched (?{...}) expression, where x is the text enclosed by {...},\n");
    T("    o is the expression ordinal counting from 1, and n is the length of\n");
    T("    the unmatched portion of the subject string. If x starts with a\n");
    T("    number then that is the return value of re_execf(), otherwise 0 is\n");
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 51.3K bytes
    - Viewed (0)
  5. src/runtime/mprof.go

    	// active is the currently published profile. A profiling
    	// cycle can be accumulated into active once its complete.
    	active memRecordCycle
    
    	// future records the profile events we're counting for cycles
    	// that have not yet been published. This is ring buffer
    	// indexed by the global heap profile cycle C and stores
    	// cycles C, C+1, and C+2. Unlike active, these counts are
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  6. src/index/suffixarray/sais2.go

    	// be of the form SLS, but the other half will be longer. Of that half,
    	// half (a quarter overall) will be SLLS; an eighth will be SLLLS, and so on.
    	// Not counting the final S in each (which overlaps the first S in the next),
    	// This works out to an average length 2×½ + 3×¼ + 4×⅛ + ... = 3.
    	// The space we need is further reduced by the fact that many of the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types/type.go

    	CountBlankFields  componentsIncludeBlankFields = true
    )
    
    // NumComponents returns the number of primitive elements that compose t.
    // Struct and array types are flattened for the purpose of counting.
    // All other types (including string, slice, and interface types) count as one element.
    // If countBlank is IgnoreBlankFields, then blank struct fields
    // (and their comprised elements) are excluded from the count.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  8. src/regexp/syntax/parse.go

    // corresponds to a 3.3 MB regexp.
    const (
    	maxSize  = 128 << 20 / instSize
    	instSize = 5 * 8 // byte, 2 uint32, slice is 5 64-bit words
    )
    
    // maxRunes is the maximum number of runes allowed in a regexp tree
    // counting the runes in all the nodes.
    // Ignoring character classes p.numRunes is always less than the length of the regexp.
    // Character classes can make it much larger: each \pL adds 1292 runes.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  9. src/time/time.go

    	}
    
    	month++ // because January is 1
    	day = day - begin + 1
    	return
    }
    
    // daysBefore[m] counts the number of days in a non-leap year
    // before month m begins. There is an entry for m=12, counting
    // the number of days before January of next year (365).
    var daysBefore = [...]int32{
    	0,
    	31,
    	31 + 28,
    	31 + 28 + 31,
    	31 + 28 + 31 + 30,
    	31 + 28 + 31 + 30 + 31,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. pkg/controller/replicaset/replica_set_test.go

    func (fe FakeRSExpectations) SatisfiedExpectations(logger klog.Logger, controllerKey string) bool {
    	fe.expSatisfied()
    	return fe.satisfied
    }
    
    // TestRSSyncExpectations tests that a pod cannot sneak in between counting active pods
    // and checking expectations.
    func TestRSSyncExpectations(t *testing.T) {
    	_, ctx := ktesting.NewTestContext(t)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 69.2K bytes
    - Viewed (0)
Back to top