Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 40 for preset (0.5 sec)

  1. pkg/scheduler/framework/runtime/framework_test.go

    			wantStatus:         framework.Wait,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.name, func(t *testing.T) {
    			metrics.Register()
    			metrics.FrameworkExtensionPointDuration.Reset()
    			metrics.PluginExecutionDuration.Reset()
    
    			plugin := &TestPlugin{name: testPlugin, inj: tt.inject}
    			r := make(Registry)
    			r.Register(testPlugin,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 09:07:27 UTC 2024
    - 103K bytes
    - Viewed (0)
  2. src/cmd/go/alldocs.go

    // Users should prefer 'go get path@version' or 'go get path@none',
    // which make other go.mod adjustments as needed to satisfy
    // constraints imposed by other modules.
    //
    // The -go=version flag sets the expected Go language version.
    // This flag is mainly for tools that understand Go version dependencies.
    // Users should prefer 'go get go@version'.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  3. cmd/admin-handlers.go

    				return
    			}
    			return
    		}
    	}
    }
    
    // dummyFileInfo represents a dummy representation of a profile data file
    // present only in memory, it helps to generate the zip stream.
    type dummyFileInfo struct {
    	name    string
    	size    int64
    	mode    os.FileMode
    	modTime time.Time
    	isDir   bool
    	sys     interface{}
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  4. src/runtime/proc.go

    	// syscalltick could already be zero (and in fact, is initialized to zero).
    	mp.syscalltick--
    
    	// Reset trace state unconditionally. This goroutine is being 'destroyed'
    	// from the perspective of the tracer.
    	mp.curg.trace.reset()
    
    	// Flush all the M's buffers. This is necessary because the M might
    	// be used on a different thread with a different procid, so we have
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/quantization/tensorflow/python/integration_test/quantize_model_test.py

        inputs, outputs = self._create_and_save_vocab_table_lookup_qat_model_tf1(
            self._input_saved_model_path, tags, signature_def_key
        )
    
        # Make sure that the desired input key and output key is present.
        self.assertIn('input_vocabs', inputs.keys())
        self.assertIn('lookup', outputs.keys())
    
        # Representative dataset is composed of a set of vocabs for table lookup.
        repr_ds = [
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 17 03:36:50 UTC 2024
    - 235.6K bytes
    - Viewed (0)
  6. pkg/scheduler/internal/queue/scheduling_queue_test.go

    		t.Errorf("Expected: %v after Pop, but got: %v", unschedulablePodInfo.Pod.Name, p.Pod.Name)
    	}
    	if len(q.nominator.nominatedPods["node1"]) != 2 {
    		t.Errorf("Expected medPriorityPodInfo and unschedulablePodInfo to be still present in nomindatePods: %v", q.nominator.nominatedPods["node1"])
    	}
    }
    
    func newDefaultQueueSort() framework.LessFunc {
    	sort := &queuesort.PrioritySort{}
    	return sort.Less
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  7. src/cmd/link/internal/ld/data.go

    		ldr.SetSymSect(ldr.Lookup("_end", 0), ldr.SymSect(end))
    	}
    
    	if ctxt.IsPPC64() && ctxt.IsElf() {
    		// Resolve .TOC. symbols for all objects. Only one TOC region is supported. If a
    		// GOT section is present, compute it as suggested by the ELFv2 ABI. Otherwise,
    		// choose a similar offset from the start of the data segment.
    		tocAddr := int64(Segdata.Vaddr) + 0x8000
    		if gotAddr := ldr.SymValue(ctxt.GOT); gotAddr != 0 {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (1)
  8. src/net/http/serve_test.go

    		rw.Header().Set("Content-Type", "text/html; charset=utf-8")
    		rw.Write(res)
    	})
    	ln := new(oneConnListener)
    	for i := 0; i < b.N; i++ {
    		conn.readBuf.Reset()
    		conn.writeBuf.Reset()
    		conn.readBuf.Write(req)
    		ln.conn = conn
    		Serve(ln, handler)
    		<-conn.closec
    	}
    }
    
    // repeatReader reads content count times, then EOFs.
    type repeatReader struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/x86/asm6.go

    func (ab *AsmBuf) Len() int { return ab.off }
    
    // Bytes returns the contents of the buffer.
    func (ab *AsmBuf) Bytes() []byte { return ab.buf[:ab.off] }
    
    // Reset empties the buffer.
    func (ab *AsmBuf) Reset() { ab.off = 0 }
    
    // At returns the byte at offset i.
    func (ab *AsmBuf) At(i int) byte { return ab.buf[i] }
    
    // asmidx emits SIB byte.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  10. guava/src/com/google/common/cache/LocalCache.java

         * ValueReference instance.
         */
        boolean isLoading();
    
        /**
         * Returns true if this reference contains an active value, meaning one that is still considered
         * present in the cache. Active values consist of live values, which are returned by cache
         * lookups, and dead values, which have been evicted but awaiting removal. Non-active values
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 149.2K bytes
    - Viewed (0)
Back to top