Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 6,499 for happen (0.12 sec)

  1. platforms/core-configuration/bean-serialization-services/src/main/kotlin/org/gradle/internal/serialize/beans/services/BeanConstructors.kt

        }
    
        private
        fun createConstructor(beanType: Class<*>): Constructor<out Any> {
            // Initialize the super types of the bean type, as this does not seem to happen via the generated constructors
            maybeInit(beanType)
            if (GroovyObjectSupport::class.java.isAssignableFrom(beanType)) {
                // Run the `GroovyObjectSupport` constructor, to initialize the metadata field
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 23:09:56 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  2. .github/ISSUE_TEMPLATE/30_contributor_regression.yml

      - type: textarea
        id: current-behavior
        attributes:
          label: Current Behavior
          description: Tell us what happens
        validations:
          required: true
      - type: textarea
        id: expected-behavior
        attributes:
          label: Expected Behavior
          description: Tell us what should happen
        validations:
          required: true
      - type: textarea
        id: context
        attributes:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Feb 16 07:49:32 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  3. src/cmd/vendor/golang.org/x/mod/internal/lazyregexp/lazyre.go

    // New creates a new lazy regexp, delaying the compiling work until it is first
    // needed. If the code is being run as part of tests, the regexp compiling will
    // happen immediately.
    func New(str string) *Regexp {
    	lr := &Regexp{str: str}
    	if inTest {
    		// In tests, always compile the regexps early.
    		lr.re()
    	}
    	return lr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jul 12 20:38:21 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  4. src/time/internal_test.go

    	// Force US/Pacific for time zone tests.
    	ForceUSPacificForTesting()
    }
    
    func initTestingZone() {
    	// For hermeticity, use only tzinfo source from the test's GOROOT,
    	// not the system sources and not whatever GOROOT may happen to be
    	// set in the process's environment (if any).
    	// This test runs in GOROOT/src/time, so GOROOT is "../..",
    	// but it is theoretically possible
    	sources := []string{"../../lib/time/zoneinfo.zip"}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:37 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  5. src/internal/lazyregexp/lazyre.go

    // New creates a new lazy regexp, delaying the compiling work until it is first
    // needed. If the code is being run as part of tests, the regexp compiling will
    // happen immediately.
    func New(str string) *Regexp {
    	lr := &Regexp{str: str}
    	if inTest {
    		// In tests, always compile the regexps early.
    		lr.re()
    	}
    	return lr
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 27 23:49:01 UTC 2019
    - 1.8K bytes
    - Viewed (0)
  6. src/internal/trace/testdata/testprog/annotations-stress.go

    					trace.Logf(ctx, "log", "fanout region%d", i)
    					if i == 2 {
    						do(ctx, 0)
    						return
    					}
    				})
    			}(i)
    		}
    	})
    
    	// Sleep to let things happen, but also increase the chance that we
    	// advance a generation.
    	time.Sleep(10 * time.Millisecond)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  7. pilot/pkg/bootstrap/config_compare.go

    // for example.
    func needsPush(prev config.Config, curr config.Config) bool {
    	if prev.GroupVersionKind != curr.GroupVersionKind {
    		// This should never happen.
    		return true
    	}
    	// If the config is not Istio, let us just push.
    	if !strings.HasSuffix(prev.GroupVersionKind.Group, "istio.io") {
    		return true
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 03 16:47:35 UTC 2023
    - 2.1K bytes
    - Viewed (0)
  8. docs/bucket/replication/test_del_marker_proxying.sh

    ./mc mb siteb/bucket
    ./mc version enable siteb/bucket
    
    # Set bucket replication
    ./mc replicate add sitea/bucket --remote-bucket siteb/bucket
    
    # Run the test to make sure proxying of DEL marker doesn't happen
    loop_count=0
    while true; do
    	if [ $loop_count -eq 100 ]; then
    		break
    	fi
    	echo "Hello World" | ./mc pipe sitea/bucket/obj$loop_count
    	./mc rm sitea/bucket/obj$loop_count
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 04 11:38:26 UTC 2024
    - 1.8K bytes
    - Viewed (0)
  9. pkg/kubelet/cm/topologymanager/numa_info.go

    	defaultAffinity, _ := bitmask.NewBitMask(n.Nodes...)
    	return defaultAffinity
    }
    
    func (d NUMADistances) CalculateAverageFor(bm bitmask.BitMask) float64 {
    	// This should never happen, but just in case make sure we do not divide by zero.
    	if bm.Count() == 0 {
    		return 0
    	}
    
    	var count float64 = 0
    	var sum float64 = 0
    	for _, node1 := range bm.GetBits() {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 09 16:52:14 UTC 2022
    - 2.7K bytes
    - Viewed (0)
  10. pkg/test/envoy/binary.go

    	for _, filePath := range filePaths {
    		fileInfo, err := os.Stat(filePath)
    		if err != nil {
    			// Should never happen
    			return "", err
    		}
    		fileTime := fileInfo.ModTime().Unix()
    		if fileTime > latestFileTime {
    			latestFileTime = fileTime
    			latestFilePath = filePath
    		}
    	}
    	return latestFilePath, nil
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 18 22:00:05 UTC 2022
    - 2.3K bytes
    - Viewed (0)
Back to top