Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 5,803 for maker (0.1 sec)

  1. test/fixedbugs/issue13799.go

    	}
    }
    
    func test2(iter int) {
    
    	const maxI = 500
    	m := make(map[int][]int) // ERROR "make\(map\[int\]\[\]int\) does not escape$"
    
    	// var fn func()
    	for i := 0; i < maxI; i++ {
    		var fn func() // this makes it work, because fn stays off heap
    		j := 0
    		fn = func() { // ERROR "func literal does not escape$"
    			m[i] = append(m[i], 0)
    			if j < 25 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  2. src/go/doc/testdata/template.txt

    {{end}}{{end}}{{end}}{{/*
    
    */}}{{with .Bugs}}
    BUGS .Bugs is now deprecated, please use .Notes instead
    {{range .}}{{indent "\t" .}}
    {{end}}{{end}}{{with .Notes}}{{range $marker, $content := .}}
    {{$marker}}S
    {{range $content}}{{$marker}}({{.UID}}){{indent "\t" .Body}}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 08 04:08:51 UTC 2014
    - 1.1K bytes
    - Viewed (0)
  3. src/image/jpeg/reader.go

    		case app14Marker:
    			err = d.processApp14Marker(n)
    		default:
    			if app0Marker <= marker && marker <= app15Marker || marker == comMarker {
    				err = d.ignore(n)
    			} else if marker < 0xc0 { // See Table B.1 "Marker code assignments".
    				err = FormatError("unknown marker")
    			} else {
    				err = UnsupportedError("unknown marker")
    			}
    		}
    		if err != nil {
    			return nil, err
    		}
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 22.5K bytes
    - Viewed (0)
  4. cmd/erasure-server-pool.go

    func (z *erasureServerPools) listObjectsGeneric(ctx context.Context, bucket, prefix, marker, delimiter string, maxKeys int, v1 bool) (loi ListObjectsInfo, err error) {
    	opts := listPathOptions{
    		V1:          v1,
    		Bucket:      bucket,
    		Prefix:      prefix,
    		Separator:   delimiter,
    		Limit:       maxKeysPlusOne(maxKeys, marker != ""),
    		Marker:      marker,
    		InclDeleted: false,
    		AskDisks:    globalAPIConfig.getListQuorum(),
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/maven/MavenGradleMetadataRedirectionIntegrationTest.groovy

            then:
            resolve.expectGraph {
                root(":", ":test:") {
                    module('org:main:1.0')
                }
            }
        }
    
        private void createPomFile(boolean marker) {
            if (!marker) {
                mainModule.withoutGradleMetadataRedirection()
            }
            mainModule.publish()
            // and now we manually patch the Gradle metadata so that its dependencies
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. platforms/jvm/plugins-java/src/integTest/groovy/org/gradle/java/dependencies/JavaConfigurationSetupIntegrationTest.groovy

        static final FORBIDDEN = "_FORBIDDEN"
        static final DOES_NOT_EXIST = "_DOES_NOT_EXIST"
    
        static forbidden(String marker) {
            marker == FORBIDDEN
        }
    
        static doesNotExist(String marker) {
            marker == DOES_NOT_EXIST
        }
    
        static valid(String marker) {
            marker == VALID
        }
    
        static deprecated(String alternatives) {
            !(alternatives in [VALID, FORBIDDEN, DOES_NOT_EXIST])
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 24 06:54:47 UTC 2023
    - 10.7K bytes
    - Viewed (0)
  7. src/os/exec/exec_windows_test.go

    	}
    	pipe.Close()
    }
    
    func TestPipePassing(t *testing.T) {
    	t.Parallel()
    
    	r, w, err := os.Pipe()
    	if err != nil {
    		t.Error(err)
    	}
    	const marker = "arrakis, dune, desert planet"
    	childProc := helperCommand(t, "pipehandle", strconv.FormatUint(uint64(w.Fd()), 16), marker)
    	childProc.SysProcAttr = &syscall.SysProcAttr{AdditionalInheritedHandles: []syscall.Handle{syscall.Handle(w.Fd())}}
    	err = childProc.Start()
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 21 23:07:55 UTC 2023
    - 2.4K bytes
    - Viewed (0)
  8. src/cmd/internal/test2json/test2json_test.go

    		var buf bytes.Buffer
    		show := func(i int, lines []string) {
    			for k := -2; k < 5; k++ {
    				marker := ""
    				if k == 0 {
    					marker = "» "
    				}
    				if 0 <= i+k && i+k < len(lines) {
    					fmt.Fprintf(&buf, "\t%s%s\n", marker, lines[i+k])
    				}
    			}
    			if i >= len(lines) {
    				// show marker after end of input
    				fmt.Fprintf(&buf, "\t» \n")
    			}
    		}
    		fmt.Fprintf(&buf, "have:\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 26 19:50:36 UTC 2022
    - 7.2K bytes
    - Viewed (0)
  9. cluster/addons/fluentd-gcp/fluentd-gcp-ds.yaml

                  touch -d "${STUCK_THRESHOLD_SECONDS} seconds ago" /tmp/marker-stuck;
                  if [ -z "$(find /var/log/fluentd-buffers -type d -newer /tmp/marker-stuck -print -quit)" ];
                  then
                    rm -rf /var/log/fluentd-buffers;
                    exit 1;
                  fi;
                  touch -d "${LIVENESS_THRESHOLD_SECONDS} seconds ago" /tmp/marker-liveness;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 27 17:54:10 UTC 2021
    - 4.1K bytes
    - Viewed (0)
  10. cmd/kubeadm/app/cmd/phases/init/bootstraptoken.go

    		Bootstrap tokens are used for establishing bidirectional trust between a node joining
    		the cluster and a control-plane node.
    
    		This command makes all the configurations required to make bootstrap tokens works
    		and then creates an initial token.
    		`)
    
    	bootstrapTokenExamples = cmdutil.Examples(`
    		# Make all the bootstrap token configurations and create an initial token, functionally
    		# equivalent to what generated by kubeadm init.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 11 08:02:50 UTC 2022
    - 4.1K bytes
    - Viewed (0)
Back to top