Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 48 for Parallel (0.38 sec)

  1. pkg/log/options.go

    func (o *Options) WithStackdriverLoggingFormat() *Options {
    	o.useStackdriverFormat = true
    	return o
    }
    
    // WithTeeToUDS configures a parallel logging pipeline that writes logs to a server over UDS.
    // addr is the socket that the server listens on, and path is the HTTP path that process the log message.
    func (o *Options) WithTeeToUDS(addr, path string) *Options {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

               "reserved for the legacy graph export pipeline to maintain expected "
               "invariants. In the case of this pass, that means manually propagating "
               "controls to lifted parallel execute regions to the graph fetch to "
               "ensure the ops execute, as well as determining whether or not the "
               "islands created by this pass should be split after the replicated "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
  3. src/cmd/go/alldocs.go

    //	    This will only list top-level tests. No subtest or subbenchmarks will be
    //	    shown.
    //
    //	-parallel n
    //	    Allow parallel execution of test functions that call t.Parallel, and
    //	    fuzz targets that call t.Parallel when running the seed corpus.
    //	    The value of this flag is the maximum number of tests to run
    //	    simultaneously.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  4. src/cmd/link/internal/ld/data.go

    // to relocsym happen in parallel; the assumption is that each
    // parallel thread will have its own state object.
    type relocSymState struct {
    	target *Target
    	ldr    *loader.Loader
    	err    *ErrorReporter
    	syms   *ArchSyms
    }
    
    // makeRelocSymState creates a relocSymState container object to
    // pass to relocsym(). If relocsym() calls happen in parallel,
    // each parallel thread should have its own state object.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 12 15:10:50 UTC 2024
    - 100.5K bytes
    - Viewed (0)
  5. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

            }
    
            final Deque<ActivationFrame> stk = new LinkedList<>();
    
            final Supplier<String> pathSupplier = () -> {
                final boolean parallel = false;
                return StreamSupport.stream(((Iterable<ActivationFrame>) stk::descendingIterator).spliterator(), parallel)
                        .map(ActivationFrame::location)
                        .collect(Collectors.joining("."));
            };
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/testing/store_tests.go

    			// By parallelizing test cases we ensure that the order in which test cases are defined
    			// doesn't automatically preclude some scenarios from happening.
    			t.Parallel()
    
    			out := &example.Pod{}
    			err := store.Get(ctx, tt.key, storage.GetOptions{IgnoreNotFound: tt.ignoreNotFound, ResourceVersion: tt.rv}, out)
    			if tt.expectNotFoundErr {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 12:45:33 UTC 2024
    - 91.4K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    				tt := tt
    				t.Run(tt.name, func(t *testing.T) {
    					if tt.oldestWins {
    						test.SetForTest(t, &features.PersistOldestWinsHeuristicForVirtualServiceHostMatching, true)
    					} else {
    						t.Parallel() // feature flags and parallel tests don't mix
    					}
    					cfg := knownServices
    					for _, tc := range tt.cfg {
    						cfg = cfg + "\n---\n" + tc.Config(t, variant)
    					}
    					istio, k, err := crd.ParseInputs(cfg)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. src/net/http/serve_test.go

    	srv := &Server{
    		ErrorLog: log.New(&ht.logbuf, "", 0),
    		Handler:  ht.handler,
    	}
    	go srv.Serve(ln)
    	<-conn.closec
    	return output.String()
    }
    
    func TestConsumingBodyOnNextConn(t *testing.T) {
    	t.Parallel()
    	defer afterTest(t)
    	conn := new(testConn)
    	for i := 0; i < 2; i++ {
    		conn.readBuf.Write([]byte(
    			"POST / HTTP/1.1\r\n" +
    				"Host: test\r\n" +
    				"Content-Length: 11\r\n" +
    				"\r\n" +
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 202K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    	metadataShallowVersions := make([][]xlMetaV2ShallowVersion, len(rawFileInfos))
    	var v2bufs [][]byte
    	if !readData {
    		v2bufs = make([][]byte, len(rawFileInfos))
    	}
    
    	// Read `xl.meta` in parallel across disks.
    	for index := range rawFileInfos {
    		rf := rawFileInfos[index]
    		if rf.Buf == nil {
    			continue
    		}
    		if !readData {
    			// Save the buffer so we can reuse it.
    			v2bufs[index] = rf.Buf
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:51:27 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  10. cmd/erasure-multipart.go

    		if err != nil && !isErrVersionNotFound(err) && !isErrObjectNotFound(err) && !isErrReadQuorum(err) {
    			return ObjectInfo{}, err
    		}
    	}
    
    	// Hold write locks to verify uploaded parts, also disallows any
    	// parallel PutObjectPart() requests.
    	uploadIDLock := er.NewNSLock(bucket, pathJoin(object, uploadID))
    	wlkctx, err := uploadIDLock.GetLock(ctx, globalOperationTimeout)
    	if err != nil {
    		return oi, err
    	}
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 44.8K bytes
    - Viewed (0)
Back to top