Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 232 for dsts (0.11 sec)

  1. tools/docker-builder/builder/crane.go

    		lt = time.Now()
    	}
    	if len(b.Dests) == 0 {
    		return fmt.Errorf("dest required")
    	}
    
    	// Over localhost, compression CPU can be the bottleneck. With remotes, compressing usually saves a lot of time.
    	compression := gzip.NoCompression
    	for _, d := range b.Dests {
    		if !strings.HasPrefix(d, "localhost") {
    			compression = gzip.BestSpeed
    			break
    		}
    	}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jul 26 01:07:39 UTC 2023
    - 9K bytes
    - Viewed (0)
  2. src/cmd/vendor/rsc.io/markdown/link.go

    	if start < v.cut {
    		return 0, false
    	}
    	i := start
    	dots := 0
    	for ; i < len(v.s); i++ {
    		c := v.s[i]
    		if c == '_' {
    			dots = -2
    			continue
    		}
    		if c == '.' {
    			dots++
    			continue
    		}
    		if !isLDH(c) {
    			break
    		}
    	}
    	if dots >= 0 && i > start {
    		return i - start, true
    	}
    	v.cut = i
    	return 0, false
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  3. 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)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top