Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 110 for palmer (0.12 sec)

  1. src/runtime/mgcpacer.go

    }
    
    // addIdleMarkWorker attempts to add a new idle mark worker.
    //
    // If this returns true, the caller must become an idle mark worker unless
    // there's no background mark worker goroutines in the pool. This case is
    // harmless because there are already background mark workers running.
    // If this returns false, the caller must NOT become an idle mark worker.
    //
    // nosplit because it may be called without a P.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 55.4K bytes
    - Viewed (0)
  2. src/runtime/malloc.go

    // Otherwise it refills the cache with a span with an available object and
    // returns that object along with a flag indicating that this was a heavy
    // weight allocation. If it is a heavy weight allocation the caller must
    // determine whether a new GC cycle needs to be started or if the GC is active
    // whether this goroutine needs to assist the GC.
    //
    // Must run in a non-preemptible context since otherwise the owner of
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 59.6K bytes
    - Viewed (0)
  3. src/cmd/dist/test.go

    }
    
    // bgCommand returns a go test Cmd and a post-Run flush function. The result
    // will write its output to stdout and stderr. If stdout==stderr, bgCommand
    // ensures Writes are serialized. The caller should call flush() after Cmd exits.
    func (opts *goTest) bgCommand(t *tester, stdout, stderr io.Writer) (cmd *exec.Cmd, flush func()) {
    	build, run, pkgs, testFlags, setupCmd := opts.buildArgs(t)
    
    	// Combine the flags.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 16:01:35 UTC 2024
    - 50K bytes
    - Viewed (0)
  4. src/internal/trace/order.go

    // If it's not valid to advance with ev, but no error was encountered, the caller
    // should attempt to advance with other candidate events from other threads. If the
    // caller runs out of candidates, the trace is invalid.
    //
    // If this returns true, Next is guaranteed to return a complete event. However,
    // multiple events may be added to the ordering, so the caller should (but is not
    // required to) continue to call Next until it is exhausted.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  5. src/runtime/mgcscavenge.go

    	// won't barge over new memory becoming available to scavenge. Furthermore, this ensures
    	// that some future caller of find *must* observe the new high index. That caller
    	// (or any other racing with it), then makes searchAddr positive before continuing, bringing
    	// us back to our monotonically decreasing steady-state.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:48:45 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  6. istioctl/pkg/describe/describe.go

    // When the config has no selector labels, this method will treat it as qualified namespace level
    // config. So configs passed into this method should only contains workload's namespaces configs
    // and rootNamespaces configs, caller should be responsible for controlling configs passed
    // in.
    func findMatchedConfigs(podsLabels klabels.Set, configs []*config.Config) []*config.Config {
    	var cfgs []*config.Config
    
    	for _, cfg := range configs {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 13 05:23:38 UTC 2024
    - 50.4K bytes
    - Viewed (0)
  7. maven-embedder/src/main/java/org/apache/maven/cli/MavenCli.java

                throws IOException, XMLStreamException {
            CoreExtensionsStaxReader parser = new CoreExtensionsStaxReader();
    
            try (InputStream is = Files.newInputStream(extensionsFile.toPath())) {
                return parser.read(is, true).getExtensions();
            }
        }
    
        private ClassRealm setupContainerRealm(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Feb 28 23:31:59 UTC 2024
    - 72.6K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_function_test.cc

                  bool expect_failure = false) {
        DefineT(num_opers, opers, ToOutput(inputs), ToOutput(outputs), output_names,
                expect_failure);
      }
    
      // Caller must delete[] the returned value
      static const char** ToArray(const std::vector<string>& strs) {
        const char** ptr = nullptr;
        if (!strs.empty()) {
          ptr = new const char*[strs.size()];
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 20 22:08:54 UTC 2023
    - 63.6K bytes
    - Viewed (0)
  9. cmd/erasure-object.go

    					found = true
    					break
    				}
    			}
    		}
    		if found {
    			offline++
    		}
    	}
    	if offline > 0 {
    		tags["offline"] = offline
    	}
    
    	_, file, line, cok := runtime.Caller(1)
    	if cok {
    		tags["caller"] = fmt.Sprintf("%s:%d", file, line)
    	}
    
    	defer auditDanglingObjectDeletion(ctx, bucket, object, m.VersionID, tags)
    
    	fi := FileInfo{
    		VersionID: m.VersionID,
    	}
    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. pilot/pkg/networking/core/listener.go

    		opts.port, meshGateway, svcConfigs)...)
    	return out
    }
    
    // buildSidecarOutboundListener builds a single listener and
    // adds it to the listenerMap provided by the caller.  Listeners are added
    // if one doesn't already exist. HTTP listeners on same port are ignored
    // (as vhosts are shipped through RDS).  TCP listeners on same port are
    // allowed only if they have different CIDR matches.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top