Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,592 for ensure (0.49 sec)

  1. tests/test_path.py

            }
        ) | IsDict(
            # TODO: remove when deprecating Pydantic v1
            {
                "detail": [
                    {
                        "loc": ["path", "item_id"],
                        "msg": "ensure this value has at least 3 characters",
                        "type": "value_error.any_str.min_length",
                        "ctx": {"limit_value": 3},
                    }
                ]
            }
        )
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:40:57 UTC 2024
    - 34.4K bytes
    - Viewed (0)
  2. src/runtime/lockrank_on.go

    //
    // Caller must hold worldsema.
    //
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    //go:nosplit
    func worldStarted() {
    	if stopped := worldIsStopped.Add(-1); stopped != 0 {
    		systemstack(func() {
    			print("world stop count=", stopped, "\n")
    			throw("released non-stopped world stop")
    		})
    	}
    }
    
    // nosplit to ensure it can be called in as many contexts as possible.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 22 14:29:04 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/execution/DefaultWorkValidationWarningRecorder.java

            warnings.forEach(warning -> {
                withDocumentation(warning, deprecateBehaviour(convertToSingleLine(renderMinimalInformationAbout(warning, false, false)))
                        .withContext("Execution optimizations are disabled to ensure correctness.")
                        .willBeRemovedInGradle9())
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 06 13:26:04 UTC 2024
    - 3.1K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/cgo_stale_precompiled.txt

    [!cgo] skip
    
    # This test may start with the runtime/cgo package already stale.
    # Explicitly rebuild it to ensure that it is cached.
    # (See https://go.dev/issue/50892.)
    #
    # If running in non-short mode, explicitly vary CGO_CFLAGS
    # as a control case (to ensure that our regexps do catch rebuilds).
    
    [!short] env GOCACHE=$WORK/cache
    [!short] env CGO_CFLAGS=-DTestScript_cgo_stale_precompiled=true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  5. src/runtime/tracestring.go

    	// Truncate the string if necessary.
    	if len(s) > maxTraceStringLen {
    		s = s[:maxTraceStringLen]
    	}
    
    	lock(&t.lock)
    	w := unsafeTraceWriter(gen, t.buf)
    
    	// Ensure we have a place to write to.
    	var flushed bool
    	w, flushed = w.ensure(2 + 2*traceBytesPerNumber + len(s) /* traceEvStrings + traceEvString + ID + len + string data */)
    	if flushed {
    		// Annotate the batch as containing strings.
    		w.byte(byte(traceEvStrings))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:03:35 UTC 2024
    - 2.4K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsToolingApiParallelModelQueryIntegrationTest.groovy

    class IsolatedProjectsToolingApiParallelModelQueryIntegrationTest extends AbstractIsolatedProjectsToolingApiIntegrationTest {
    
        def "intermediate model is cached and reused for nested concurrent requests"() {
            // Sleep to ensure concurrent requests for the same model catch up before the first one is finished
            withSomeToolingModelBuilderPluginInBuildSrc("""
                Thread.sleep(3000)
            """)
    
            settingsFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. pkg/istio-agent/agent_test.go

    	// causes the test to fail. By checking for the leak first, we ensure all of our activities have
    	// fully cleanup up.
    	// https://github.com/golang/go/issues/43547
    	leak.Check(t)
    	// We run in the temp dir to ensure that when we are writing to the hardcoded ./etc/certs we
    	// don't collide with other tests
    	if err := os.Chdir(wd); err != nil {
    		t.Fatal(err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 33.4K bytes
    - Viewed (0)
  8. pilot/pkg/autoregistration/controller_test.go

    			retry.UntilSuccessOrFail(t, func() error {
    				return checkEntryDisconnected(store, weB)
    			})
    			// ensure the entry is disconnected
    			checkNonAutoRegisteredEntryOrFail(t, store, weB, "")
    			// reconnect
    			origConnTime = time.Now()
    			c1.OnConnect(makeConn(p, origConnTime))
    			// ensure the entry is connected
    			checkNonAutoRegisteredEntryOrFail(t, store, weB, c1.instanceID)
    		})
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 16 00:00:36 UTC 2024
    - 31.4K bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/text/cases/icu.go

    //go:build icu
    
    package cases
    
    // Ideally these functions would be defined in a test file, but go test doesn't
    // allow CGO in tests. The build tag should ensure either way that these
    // functions will not end up in the package.
    
    // TODO: Ensure that the correct ICU version is set.
    
    /*
    #cgo LDFLAGS: -licui18n.57 -licuuc.57
    #include <stdlib.h>
    #include <unicode/ustring.h>
    #include <unicode/utypes.h>
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 1.4K bytes
    - Viewed (0)
  10. hack/lib/util.sh

        fi
        exit 1
      fi
    }
    
    # kube::util::ensure-gnu-sed
    # Determines which sed binary is gnu-sed on linux/darwin
    #
    # Sets:
    #  SED: The name of the gnu-sed binary
    #
    function kube::util::ensure-gnu-sed {
      # NOTE: the echo below is a workaround to ensure sed is executed before the grep.
      # see: https://github.com/kubernetes/kubernetes/issues/87251
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:33 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top