Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 652 for trackers (0.18 sec)

  1. operator/pkg/util/path_test.go

    			expect: false,
    		},
    		{
    			desc:   "invalid-2",
    			in:     "[1:]",
    			expect: false,
    		},
    		{
    			desc:   "empty",
    			in:     "",
    			expect: false,
    		},
    		{
    			desc:   "no-brackets",
    			in:     "1:2",
    			expect: false,
    		},
    		{
    			desc:   "one-bracket",
    			in:     "[1:2",
    			expect: false,
    		},
    	}
    
    	for _, tt := range tests {
    		t.Run(tt.desc, func(t *testing.T) {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Aug 29 00:15:38 UTC 2020
    - 6.7K bytes
    - Viewed (0)
  2. istioctl/pkg/wait/wait_test.go

    			fc.PrependWatchReactor("*", func(action clienttesting.Action) (handled bool, ret watch.Interface, err error) {
    				gvr := action.GetResource()
    				ns := action.GetNamespace()
    				watch, err := fc.Tracker().Watch(gvr, ns)
    				if err != nil {
    					return false, nil, err
    				}
    				// Kubernetes Fake watches do not add initial state, but real server does
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Mar 15 08:28:50 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  3. pilot/pkg/xds/filters/filters.go

    var (
    	EnvironmentResourceDetector = &core.TypedExtensionConfig{
    		Name:        "envoy.tracers.opentelemetry.resource_detectors.environment",
    		TypedConfig: protoconv.MessageToAny(&resourcedetectors.EnvironmentResourceDetectorConfig{}),
    	}
    	DynatraceResourceDetector = &core.TypedExtensionConfig{
    		Name:        "envoy.tracers.opentelemetry.resource_detectors.dynatrace",
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 09 09:24:25 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  4. src/vendor/golang.org/x/text/unicode/bidi/trieval.go

    	LRI // LeftToRightIsolate
    	RLI // RightToLeftIsolate
    	FSI // FirstStrongIsolate
    	PDI // PopDirectionalIsolate
    
    	unknownClass = ^Class(0)
    )
    
    // A trie entry has the following bits:
    // 7..5  XOR mask for brackets
    // 4     1: Bracket open, 0: Bracket close
    // 3..0  Class type
    
    const (
    	openMask     = 0x10
    	xorMaskShift = 5
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 22 17:16:14 UTC 2022
    - 1.2K bytes
    - Viewed (0)
  5. platforms/core-execution/workers/src/main/java/org/gradle/workers/internal/NoIsolationWorkerFactory.java

                                }
                            });
                        } finally {
                            //TODO the async work tracker should wait for children of an operation to finish first.
                            //It should not be necessary to call it here.
                            workerExecutor.await();
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 15:17:07 UTC 2024
    - 3.7K bytes
    - Viewed (0)
  6. guava-testlib/README.md

    To add a dependency using Gradle:
    
    ```gradle
    dependencies {
      test 'com.google.guava:guava-testlib:33.2.1-jre'
    }
    ```
    
    ## Links
    
    -   [GitHub project](https://github.com/google/guava)
    -   [Issue tracker: Report a defect or feature request](https://github.com/google/guava/issues/new)
    -   [StackOverflow: Ask "how-to" and "why-didn't-it-work" questions](https://stackoverflow.com/questions/ask?tags=guava+java)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 31 17:43:52 UTC 2024
    - 1.7K bytes
    - Viewed (0)
  7. tensorflow/cc/experimental/libtf/runtime/runtime.cc

      }
      TaggedValue module = TaggedValue::Dict();
    
      // Initialize concrete function traces.
      const RepeatedPtrField<FunctionDef> function_defs =
          tf_package->GetFunctionDefs();
      absl::flat_hash_map<std::string, AbstractFunctionPtr> traces;
      for (auto& fdef : function_defs) {
        AbstractFunctionPtr trace(new GraphFunction(fdef), /*add_ref=*/false);
        traces[fdef.signature().name()] = trace;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Sep 01 11:18:25 UTC 2022
    - 7.4K bytes
    - Viewed (0)
  8. testing/internal-testing/src/main/groovy/org/gradle/test/fixtures/Flaky.groovy

     */
    @Retention(RetentionPolicy.RUNTIME)
    @Target([ElementType.TYPE, ElementType.METHOD])
    @Tag("org.gradle.test.fixtures.Flaky")
    @interface Flaky {
        /**
         * Description or issue tracker link.
         */
        String because()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  9. docs/en/docs/python-types.md

        As the list is a type that contains some internal types, you put them in square brackets:
    
        ```Python hl_lines="4"
        {!> ../../../docs_src/python_types/tutorial006.py!}
        ```
    
    !!! info
        Those internal types in the square brackets are called "type parameters".
    
        In this case, `str` is the type parameter passed to `List` (or `list` in Python 3.9 and above).
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  10. pkg/volume/csi/testing/testing.go

    	tmpDir, err := utiltesting.MkTmpdir("csi-test")
    	if err != nil {
    		t.Fatalf("can't create temp dir: %v", err)
    	}
    
    	if client == nil {
    		client = fakeclient.NewSimpleClientset()
    	}
    
    	client.Tracker().Add(&v1.Node{
    		ObjectMeta: metav1.ObjectMeta{
    			Name: "fakeNode",
    		},
    		Spec: v1.NodeSpec{},
    	})
    
    	// Start informer for CSIDrivers.
    	factory := informers.NewSharedInformerFactory(client, csi.CsiResyncPeriod)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jan 07 00:11:50 UTC 2021
    - 2.2K bytes
    - Viewed (0)
Back to top