Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 91 for insight (0.93 sec)

  1. .github/CODEOWNERS

    platforms/enterprise/                                   @gradle/bt-build-scan @gradle/dv-build-insights-team
    platforms/enterprise/enterprise/                        @gradle/bt-build-scan @gradle/dv-testing-team @gradle/dv-build-insights-team @ldaley
    platforms/enterprise/enterprise-logging/                @gradle/bt-build-scan @gradle/dv-build-insights-team @gradle/dv-testing-team
    platforms/enterprise/enterprise-operations/             @gradle/bt-build-scan
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:44:59 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  2. src/cmd/go/internal/cache/prog.go

    				return // quietly
    			}
    			if err == io.EOF {
    				c.mu.Lock()
    				inFlight := len(c.inFlight)
    				c.mu.Unlock()
    				base.Fatalf("GOCACHEPROG exited pre-Close with %v pending requests", inFlight)
    			}
    			base.Fatalf("error reading JSON from GOCACHEPROG: %v", err)
    		}
    		c.mu.Lock()
    		ch, ok := c.inFlight[res.ID]
    		delete(c.inFlight, res.ID)
    		c.mu.Unlock()
    		if ok {
    			ch <- res
    		} else {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 14 19:23:25 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  3. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/SuggestionsMessages.groovy

        public static final String DEBUG = "Run with --debug option to get more log output."
        public static final String SCAN = "Run with --scan to get full insights."
        public static final String GET_HELP = "Get more help at https://help.gradle.org."
        public static final String STACKTRACE_MESSAGE = "Run with --stacktrace option to get the stack trace."
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/server/options/server_run_options.go

    	}
    
    	if s.MaxRequestsInFlight < 0 {
    		errors = append(errors, fmt.Errorf("--max-requests-inflight can not be negative value"))
    	}
    	if s.MaxMutatingRequestsInFlight < 0 {
    		errors = append(errors, fmt.Errorf("--max-mutating-requests-inflight can not be negative value"))
    	}
    
    	if s.RequestTimeout.Nanoseconds() < 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 24 21:53:51 UTC 2023
    - 15.4K bytes
    - Viewed (0)
  5. src/internal/trace/order.go

    	if idx < 0 {
    		return 0, fmt.Errorf("tried to end event %v, but not in-flight", go122.Specs()[st].Name)
    	}
    	// Swap remove.
    	desc := s.inFlight[idx].desc
    	s.inFlight[idx], s.inFlight[len(s.inFlight)-1] = s.inFlight[len(s.inFlight)-1], s.inFlight[idx]
    	s.inFlight = s.inFlight[:len(s.inFlight)-1]
    	return desc, nil
    }
    
    // seqCounter represents a global sequence counter for a resource.
    type seqCounter struct {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 03 14:56:25 UTC 2024
    - 52.4K bytes
    - Viewed (0)
  6. platforms/software/testing-base-infrastructure/src/integTest/resources/org/gradle/api/internal/tasks/testing/JULRedirectorIntegrationTest/loggingConfig/src/main/java/com/example/LumberJack.java

        public void sing() {
            ROOT.fine("Oh, I'm a lumberjack, and I'm okay.");
            OAK.fine("I sleep all night and I work all day.");
            ELM.fine("He's a lumberjack, and He's okay.");
            ELMER.fine("He sleeps all night and he works all day.");
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 13 20:33:30 UTC 2024
    - 1.2K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

            build-scan-terms-of-use-agree: "yes"
    
        - name: Run build
          run: ./gradlew build
    ----
    
    https://scans.gradle.com[Gradle Build ScansĀ®] are a great way to view your build results, and provide valuable insights into your build.
    The workflow is configured to automatically publish a Build Scan for each build, accepting the legal terms of use.
    If you don't wish to publish Build Scans, you can remove this configuration from the workflow.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  8. cluster/gce/gci/configure-kubeapiserver.sh

        if [[ "${NUM_NODES}" -gt 3000 ]]; then
          params=$(append-param-if-not-present "${params}" "max-requests-inflight" 3000)
          params=$(append-param-if-not-present "${params}" "max-mutating-requests-inflight" 1000)
        elif [[ "${NUM_NODES}" -gt 500 ]]; then
          params=$(append-param-if-not-present "${params}" "max-requests-inflight" 1500)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 11:08:30 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/server/genericapiserver_graceful_termination_test.go

    		<-inflight.blockedCh
    		w.WriteHeader(http.StatusOK)
    	})
    	s.Handler.NonGoRestfulMux.Handle(inflight.url, handler)
    	return inflight
    }
    
    func setupInFlightWatchRequestHandler(s *GenericAPIServer) *inFlightRequest {
    	inflight := &inFlightRequest{
    		blockedCh: make(chan struct{}),
    		startedCh: make(chan struct{}),
    		resultCh:  make(chan result),
    		url:       "/apis/watches.group/v1/namespaces/foo/bar?watch=true",
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 18:59:21 UTC 2024
    - 38.3K bytes
    - Viewed (0)
  10. pkg/envoy/admin.go

    package envoy
    
    import (
    	"bytes"
    	"fmt"
    	"io"
    	"net/http"
    	"strings"
    
    	"istio.io/istio/pkg/log"
    )
    
    // DrainListeners drains inbound listeners of Envoy so that inflight requests
    // can gracefully finish and even continue making outbound calls as needed.
    func DrainListeners(adminPort uint32, inboundonly bool, skipExit bool) error {
    	var drainURL string
    	if inboundonly {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Oct 19 20:22:09 UTC 2023
    - 1.8K bytes
    - Viewed (0)
Back to top