Search Options

Results per page
Sort
Preferred Languages
Advance

Results 131 - 140 of 292 for hierarchyOf (0.23 sec)

  1. tests/integration/telemetry/tracing/zipkin/server_tracing_test.go

    // The test verifies that all expected spans (a client span and a server span for each service call in the sample bookinfo app)
    // are generated and that they are all a part of the same distributed trace with correct hierarchy and name.
    //
    // More information on distributed tracing can be found here: https://istio.io/docs/tasks/telemetry/distributed-tracing/zipkin/
    func TestServerTracing(t *testing.T) {
    	framework.NewTest(t).
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 2.3K bytes
    - Viewed (0)
  2. platforms/ide/ide/src/main/java/org/gradle/plugins/ide/internal/tooling/GradleProjectBuilder.java

    import static org.gradle.plugins.ide.internal.tooling.ToolingModelBuilderSupport.buildFromTask;
    
    /**
     * Builds the {@link GradleProject} model that contains the project hierarchy and task information.
     */
    public class GradleProjectBuilder implements GradleProjectBuilderInternal {
    
        @Override
        public boolean canBuild(String modelName) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 13:57:30 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  3. pkg/kubelet/cm/util/cgroups_linux.go

    			return nil, err
    		}
    	}
    	return libcontainercgroups.GetPids(dir)
    }
    
    // getCgroupV1Path gets the file path to the "devices" subsystem of the desired cgroup.
    // cgroupPath is the path in the cgroup hierarchy.
    func getCgroupV1Path(cgroupPath string) (string, error) {
    	cgroupPath = libcontainerutils.CleanPath(cgroupPath)
    
    	mnt, root, err := libcontainercgroups.FindCgroupMountpointAndRoot(cgroupPath, "devices")
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 12 07:50:19 UTC 2020
    - 2.9K bytes
    - Viewed (0)
  4. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildBuildPathAssignmentIntegrationTest.groovy

                [path: ':includedBuild:buildLogic', name: 'buildLogic'],
                [path: ':buildLogic', name: 'buildLogic']
            ]
        }
    
        def "build paths are selected based on the directory hierarchy"() {
            def builds = nestedBuilds {
                includedBuild {
                    buildLogic
                    nested {
                        buildLogic
                        includeBuild '../buildLogic'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 20 09:41:26 UTC 2023
    - 13.4K bytes
    - Viewed (0)
  5. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/command_headers.go

    	c.Headers = map[string]string{}
    	// Session identifier to aggregate multiple Requests from single kubectl command.
    	uid := uuid.New().String()
    	c.Headers[kubectlSessionHeader] = uid
    	// Iterate up the hierarchy of commands from the leaf command to create
    	// the full command string. Example: kubectl create secret generic
    	cmdStrs := []string{}
    	for cmd.HasParent() {
    		parent := cmd.Parent()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 3.2K bytes
    - Viewed (0)
  6. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

                identifiers.put(ident, method);
              }
            }
          }
        }
        return ImmutableList.copyOf(identifiers.values());
      }
    
      /** Global cache of classes to their flattened hierarchy of supertypes. */
      private static final LoadingCache<Class<?>, ImmutableSet<Class<?>>> flattenHierarchyCache =
          CacheBuilder.newBuilder()
              .weakKeys()
              .build(
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  7. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/plugins/ide/tooling/m3/ToolingApiEclipseModelCrossVersionSpec.groovy

            projectA.projectDependencies.any { it.path == 'c' }
            projectA.projectDependencies.any { it.path == 'root' }
        }
    
        def "can build the eclipse project hierarchy for a multi-project build"() {
    
            projectDir.file('settings.gradle').text = '''
                include "child1", "child2", "child1:grandChild1"
                rootProject.name = 'root'
    '''
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:20 UTC 2023
    - 11.4K bytes
    - Viewed (0)
  8. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

        private final OutputEventListener listener;
        private final LogHeaderFormatter headerFormatter;
        private final boolean verbose;
    
        // Maintain a hierarchy of all progress operations in progress — heads up: this is a *forest*, not just 1 tree
        private final Map<OperationIdentifier, OperationState> operationsInProgress = new LinkedHashMap<OperationIdentifier, OperationState>();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/initialization/Settings.java

    import org.gradle.vcs.SourceControl;
    
    import javax.annotation.Nullable;
    import java.io.File;
    import java.util.Arrays;
    
    /**
     * <p>Declares the configuration required to instantiate and configure the hierarchy of {@link
     * org.gradle.api.Project} instances which are to participate in a build.</p>
     *
     * <p>There is a one-to-one correspondence between a <code>Settings</code> instance and a <code>{@value
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 22 08:36:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  10. platforms/ide/ide-native/src/main/java/org/gradle/ide/xcode/internal/xcodeproj/PBXReference.java

    import com.google.common.base.Preconditions;
    import org.gradle.api.Named;
    
    import javax.annotation.Nullable;
    
    /**
     * Superclass for file, directories, and groups. Xcode's virtual file hierarchy are made of these
     * objects.
     */
    public class PBXReference extends PBXContainerItem implements Named {
        private final String name;
        @Nullable
        private String path;
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 26 14:49:12 UTC 2023
    - 4.4K bytes
    - Viewed (0)
Back to top