Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 64 of 64 for getConfigurations (0.18 sec)

  1. pilot/pkg/model/telemetry_test.go

    					} else {
    						w := &httpwasm.Wasm{}
    
    						if err := f.GetTypedConfig().UnmarshalTo(w); err != nil {
    							t.Fatal(err)
    						}
    						cfg := &wrappers.StringValue{}
    						if err := w.GetConfig().GetConfiguration().UnmarshalTo(cfg); err != nil {
    							t.Fatal(err)
    						}
    						if _, dupe := res[f.GetName()]; dupe {
    							t.Fatalf("duplicate filter found: %v", f.GetName())
    						}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:30 UTC 2024
    - 39.6K bytes
    - Viewed (0)
  2. pkg/kubelet/kubelet.go

    	kl.oneTimeInitializer.Do(kl.initializeRuntimeDependentModules)
    	kl.runtimeState.setRuntimeSync(kl.clock.Now())
    }
    
    // GetConfiguration returns the KubeletConfiguration used to configure the kubelet.
    func (kl *Kubelet) GetConfiguration() kubeletconfiginternal.KubeletConfiguration {
    	return kl.kubeletConfiguration
    }
    
    // BirthCry sends an event that the kubelet has started up.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  3. maven-core/src/test/java/org/apache/maven/project/PomConstructionTest.java

                    .findFirst()
                    .orElse(null);
            assertNotNull(pluginExecution, "Wrong id for \"" + artifactId + "\"");
    
            String config = pluginExecution.getConfiguration().toString();
            assertTrue(
                    config.contains(expectedConfig),
                    "Wrong config for \"" + artifactId + "\": (" + config + ") does not contain :" + expectedConfig);
        }
    
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 93.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/DependencyGraphBuilderTest.groovy

        )
    
        def root = rootProject()
        def rootComponent = Stub(RootComponentMetadataBuilder.RootComponentState) {
            getRootComponent() >> root
            getRootVariant() >> root.getConfiguration('root')
        }
    
        private TestGraphVisitor resolve(Spec<? super DependencyMetadata> edgeFilter = { true }) {
            def graphVisitor = new TestGraphVisitor()
            builder.resolve(
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 22 19:04:04 UTC 2024
    - 45.1K bytes
    - Viewed (0)
Back to top