Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 2,166 for maker (0.23 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/test/integration/fixtures/resources.go

    	}
    	for _, g := range groupResource.APIResources {
    		if g.Name == crd.Spec.Names.Plural {
    			return true, nil
    		}
    	}
    	return false, nil
    }
    
    // waitForCRDReadyWatchUnsafe creates the CRD and makes sure
    // the apiextension apiserver has installed the CRD. But it's not safe to watch
    // the created CR. Please call CreateCRDUsingRemovedAPI if you need to
    // watch the CR.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 19 02:01:40 UTC 2021
    - 21.4K bytes
    - Viewed (0)
  2. src/cmd/cgo/internal/testshared/shared_test.go

    	data, err := os.ReadFile(path)
    	if err != nil {
    		t.Fatal(err)
    	}
    	old := make([]byte, len(data))
    	copy(old, data)
    	if bytes.HasPrefix(data, []byte("!<arch>\n")) {
    		// Change last digit of build ID.
    		// (Content ID in the new content-based build IDs.)
    		const marker = `build id "`
    		i := bytes.Index(data, []byte(marker))
    		if i < 0 {
    			t.Fatal("cannot find build id in archive")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Aug 26 01:54:41 UTC 2023
    - 36.3K bytes
    - Viewed (0)
  3. platforms/software/ivy/src/test/groovy/org/gradle/api/publish/ivy/internal/publisher/ValidatingIvyPublisherTest.groovy

        }
    
        def "reports and fails with invalid descriptor file (marker = #marker)"() {
            given:
            def projectIdentity = this.projectIdentity(coordinates.group, coordinates.name, coordinates.version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 15K bytes
    - Viewed (0)
  4. src/internal/trace/summary_test.go

    	}
    	wantRegions := map[string]region{
    		// N.B. "pre-existing region" never even makes it into the trace.
    		//
    		// TODO(mknyszek): Add test case for end-without-a-start, which can happen at
    		// a generation split only.
    		"":                     {trace.EventStateTransition, trace.EventStateTransition}, // Task inheritance marker.
    		"task0 region":         {trace.EventRegionBegin, trace.EventBad},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  5. pkg/istio-agent/xds_proxy_delta.go

    		upstreamError:     make(chan error), // can be produced by recv and send
    		downstreamError:   make(chan error), // can be produced by recv and send
    		deltaRequestsChan: channels.NewUnbounded[*discovery.DeltaDiscoveryRequest](),
    		// Allow a buffer of 1. This ensures we queue up at most 2 (one in process, 1 pending) responses before forwarding.
    		deltaResponsesChan: make(chan *discovery.DeltaDiscoveryResponse, 1),
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  6. pkg/scheduler/framework/plugins/podtopologyspread/filtering.go

    	}
    
    	s := preFilterState{
    		Constraints:          constraints,
    		TpKeyToCriticalPaths: make(map[string]*criticalPaths, len(constraints)),
    		TpPairToMatchNum:     make(map[topologyPair]int, sizeHeuristic(len(allNodes), constraints)),
    	}
    
    	tpCountsByNode := make([]map[topologyPair]int, len(allNodes))
    	requiredNodeAffinity := nodeaffinity.GetRequiredNodeAffinity(pod)
    	processNode := func(i int) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 10:42:29 UTC 2024
    - 12.4K bytes
    - Viewed (0)
  7. src/time/tick_test.go

    	}
    
    	tim.Stop()
    	drainAsync()
    	noTick()
    
    	// Again using select and with two goroutines waiting.
    	tim.Reset(10000 * Second)
    	drainAsync()
    	done = make(chan bool, 2)
    	done1 := make(chan bool)
    	done2 := make(chan bool)
    	stop := make(chan bool)
    	go func() {
    		select {
    		case <-C:
    			done <- true
    		case <-stop:
    		}
    		close(done1)
    	}()
    	go func() {
    		select {
    		case <-C:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 17:10:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  8. src/net/tcpsock_test.go

    		t.Fatal(err)
    	}
    	defer r.Close()
    
    	errc2 := make(chan error, 1)
    	defer func() {
    		if err := <-errc2; err != nil {
    			t.Error(err)
    		}
    	}()
    
    	defer w.Close()
    
    	go func() {
    		_, err := io.Copy(c, r)
    		errc2 <- err
    	}()
    
    	// Split write into 2 packets. That makes Windows TransmitFile
    	// drop second packet.
    	packet := make([]byte, 1)
    	_, err = w.Write(packet)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 20 06:04:31 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  9. src/cmd/internal/test2json/test2json.go

    // before or after emitting other events.
    func (c *Converter) handleInputLine(line []byte) {
    	if len(line) == 0 {
    		return
    	}
    	sawMarker := false
    	if c.needMarker && line[0] != marker {
    		c.output.write(line)
    		return
    	}
    	if line[0] == marker {
    		c.output.flush()
    		sawMarker = true
    		line = line[1:]
    	}
    
    	// Trim is line without \n or \r\n.
    	trim := line
    	if len(trim) > 0 && trim[len(trim)-1] == '\n' {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 09 17:33:07 UTC 2022
    - 14.5K bytes
    - Viewed (0)
  10. src/image/jpeg/writer.go

    	}
    }
    
    // writeMarkerHeader writes the header for a marker with the given length.
    func (e *encoder) writeMarkerHeader(marker uint8, markerlen int) {
    	e.buf[0] = 0xff
    	e.buf[1] = marker
    	e.buf[2] = uint8(markerlen >> 8)
    	e.buf[3] = uint8(markerlen & 0xff)
    	e.write(e.buf[:4])
    }
    
    // writeDQT writes the Define Quantization Table marker.
    func (e *encoder) writeDQT() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 12:02:45 UTC 2023
    - 17.1K bytes
    - Viewed (0)
Back to top