Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 652 for trackers (0.25 sec)

  1. pkg/config/analysis/diag/messages.go

    		if len(deduped) != 0 && deduped[len(deduped)-1].String() == m.String() {
    			continue
    		}
    		deduped = append(deduped, m)
    	}
    	return deduped
    }
    
    // SetDocRef sets the doc URL reference tracker for the messages
    func (ms *Messages) SetDocRef(docRef string) *Messages {
    	for i := range *ms {
    		(*ms)[i].DocRef = docRef
    	}
    	return ms
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 23 02:47:46 UTC 2023
    - 2.6K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/api/internal/changedetection/changes/DefaultTaskExecutionMode.java

        private static final DefaultTaskExecutionMode UNTRACKED_NO_REASON = new DefaultTaskExecutionMode("Task state is not tracked.", false, false);
        private static final DefaultTaskExecutionMode RERUN_TASKS_ENABLED = new DefaultTaskExecutionMode("Executed with '--rerun-tasks'.", true, false);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 04 07:36:55 UTC 2023
    - 4.6K bytes
    - Viewed (0)
  3. platforms/native/language-native/src/main/java/org/gradle/language/nativeplatform/tasks/AbstractNativeCompileTask.java

            return objectFileDir;
        }
    
        /**
         * Returns the header directories to be used for compilation.
         */
        @Internal("The paths for include directories are tracked via the includePaths property, the contents are tracked via discovered inputs")
        public ConfigurableFileCollection getIncludes() {
            return includes;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.6K bytes
    - Viewed (0)
  4. releasenotes/notes/51078.yaml

    apiVersion: release-notes/v2
    kind: feature
    area: telemetry
    issue:
      - 50808
    releaseNotes:
      - |
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 17:05:28 UTC 2024
    - 145 bytes
    - Viewed (0)
  5. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/MavenPublishPomCustomizationKotlinDslIntegTest.groovy

                                    tag.set("v1.0")
                                }
                                issueManagement {
                                    system.set("Some Issue Tracker")
                                    url.set("https://issues.example.org/")
                                }
                                ciManagement {
                                    system.set("Some CI Server")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/input/pilot_disable_tracing.yaml

    apiVersion: install.istio.io/v1alpha1
    kind: IstioOperator
    spec:
      profile: empty
      values:
        global:
          proxy:
            tracer: none
      components:
        pilot:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jul 23 21:06:56 UTC 2021
    - 182 bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/watch_tracker.go

    // the previously registered watch from the watch tracker.
    type ForgetWatchFunc func()
    
    // WatchTracker is an interface that allows tracking the number
    // of watches in the system for the purpose of estimating the
    // cost of incoming mutating requests.
    type WatchTracker interface {
    	// RegisterWatch reqisters a watch based on the provided http.Request
    	// in the tracker. It returns the function that should be called
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Dec 18 04:27:38 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. common/config/.yamllint.yml

    # common-files repo, make the change there and check it in. Then come back to this repo and run
    # "make update-common".
    
    rules:
      braces: disable
      brackets: disable
      colons: enable
      commas: disable
      comments: disable
      comments-indentation: disable
      document-end: disable
      document-start: disable
      empty-lines: disable
      empty-values: disable
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Sep 30 23:53:31 UTC 2020
    - 863 bytes
    - Viewed (0)
  9. pkg/config/validation/agent/validation_test.go

    					c.Tracing = &meshconfig.Tracing{
    						Tracer: &meshconfig.Tracing_Zipkin_{
    							Zipkin: &meshconfig.Tracing_Zipkin{
    								Address: "$(HOST_IP):9411",
    							},
    						},
    					}
    				},
    			),
    			isValid: true,
    		},
    		{
    			name: "zipkin config invalid",
    			in: modify(valid,
    				func(c *meshconfig.ProxyConfig) {
    					c.Tracing = &meshconfig.Tracing{
    						Tracer: &meshconfig.Tracing_Zipkin_{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 39.1K bytes
    - Viewed (0)
  10. mockwebserver/src/main/kotlin/mockwebserver3/MockWebServer.kt

          }
    
          sleepNanos(response.headersDelayNanos)
          stream.writeHeaders(response.toHttp2Headers(), outFinished, flushHeaders)
    
          if (trailers.size > 0) {
            stream.enqueueTrailers(trailers)
          }
          pushPromises(stream, request, response.pushPromises)
          if (body != null) {
            sleepNanos(bodyDelayNanos)
            val responseBodySink =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sun Mar 31 17:16:15 UTC 2024
    - 37.4K bytes
    - Viewed (0)
Back to top