Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 254 for dsts (0.04 sec)

  1. src/image/draw/clip_test.go

    	},
    }
    
    func TestClip(t *testing.T) {
    	dst0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    	src0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    	mask0 := image.NewRGBA(image.Rect(0, 0, 100, 100))
    	for _, c := range clipTests {
    		dst := dst0.SubImage(c.dr).(*image.RGBA)
    		src := src0.SubImage(c.sr).(*image.RGBA)
    		r, sp, mp := c.r, c.sp, c.mp
    		if c.nilMask {
    			clip(dst, &r, src, &sp, nil, nil)
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jul 20 18:07:05 UTC 2023
    - 4.4K bytes
    - Viewed (0)
  2. pkg/kubelet/config/file_linux.go

    		}
    	}
    }
    
    func (s *sourceFile) produceWatchEvent(e *fsnotify.Event) error {
    	// Ignore file start with dots
    	if strings.HasPrefix(filepath.Base(e.Name), ".") {
    		klog.V(4).InfoS("Ignored pod manifest, because it starts with dots", "eventName", e.Name)
    		return nil
    	}
    	var eventType podEventType
    	switch {
    	case (e.Op & fsnotify.Create) > 0:
    		eventType = podAdd
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 02 17:27:26 UTC 2023
    - 3.8K bytes
    - Viewed (0)
  3. tests/test_tutorial/test_configure_swagger_ui/test_tutorial002.py

        assert (
            '"syntaxHighlight": false' not in response.text
        ), "not used parameters should not be included"
        assert (
            '"syntaxHighlight.theme": "obsidian"' in response.text
        ), "parameters with middle dots should be included in a JSON compatible way"
        assert (
            '"dom_id": "#swagger-ui"' in response.text
        ), "default configs should be preserved"
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Aug 19 19:54:04 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/samples/readme-templates/application-body.adoc.template

    BUILD SUCCESSFUL
    2 actionable tasks: 2 executed
    ----
    
    NOTE: The first time you run the wrapper script, `gradlew`, there may be a delay while that version of `gradle` is downloaded and stored locally in your `~/.gradle/wrapper/dists` folder.
    
    == Bundle the application
    
    The `application` plugin also bundles the application, with all its dependencies, for you.
    The archive will also contain a script to start the application with a single command.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  5. tensorflow/c/experimental/filesystem/BUILD

    tf_cc_test(
        name = "modular_filesystem_test",
        size = "small",
        srcs = ["modular_filesystem_test.cc"],
        linkopts = ["-ldl"],
        tags = [
            "manual",  # Requires DSOs as arguments, eventual setup
            "notap",  # b/139060984, requires implementing modular support for Google filesystem
        ],
        deps = [
            ":modular_filesystem",
            "//tensorflow/core:framework_internal",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 2.1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/smb1/UniAddress.java

            if( Character.isDigit( hostname.charAt( 0 ))) {
                int i, len, dots;
                char[] data;
    
                i = dots = 0;                    /* quick IP address validation */
                len = hostname.length();
                data = hostname.toCharArray();
                while( i < len && Character.isDigit( data[i++] )) {
                    if( i == len && dots == 3 ) {
                        // probably an IP address
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 21:10:40 UTC 2019
    - 16.2K bytes
    - Viewed (0)
  7. tests/integration/pilot/common/routing.go

    `,
    			checkForN: func(src echo.Caller, dests echo.Services, opts *echo.CallOptions) echo.Checker {
    				return check.And(
    					check.OK(),
    					func(result echo.CallResult, err error) error {
    						errorThreshold := 10
    						if len(split) != len(dests) {
    							// shouldn't happen
    							return fmt.Errorf("split configured for %d destinations, but framework gives %d", len(split), len(dests))
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 08 21:52:51 UTC 2024
    - 135.9K bytes
    - Viewed (0)
  8. platforms/documentation/docs/src/snippets/signing/maven-publish/groovy/build.gradle

                    description = 'A concise description of my library'
                    url = 'http://www.example.com/library'
                    properties = [
                        myProp: "value",
                        "prop.with.dots": "anotherValue"
                    ]
                    licenses {
                        license {
                            name = 'The Apache License, Version 2.0'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 2.8K bytes
    - Viewed (0)
  9. src/log/slog/text_handler.go

    // dots. No further escaping is performed.
    // Thus there is no way to determine from the key "a.b.c" whether there
    // are two groups "a" and "b" and a key "c", or a single group "a.b" and a key "c",
    // or single group "a" and a key "b.c".
    // If it is necessary to reconstruct the group structure of a key
    // even in the presence of dots inside components, use
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 23 22:56:07 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractPolyglotIntegrationSpec.groovy

    import org.gradle.integtests.fixtures.polyglot.MultiProjectBuilder
    
    /**
     * An integration test which allows testing build scripts with both the
     * Groovy and Kotlin DSLs
     */
    @CompileStatic
    @PolyglotDslTest
    class AbstractPolyglotIntegrationSpec extends AbstractIntegrationSpec {
    
        private MultiProjectBuilder projectBuilder
    
        def setup() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
Back to top