Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 44 for processPod (0.19 sec)

  1. src/os/exec.go

    type processMode uint8
    
    const (
    	// modePID means that Process operations such use the raw PID from the
    	// Pid field. handle is not used.
    	//
    	// This may be due to the host not supporting handles, or because
    	// Process was created as a literal, leaving handle unset.
    	//
    	// This must be the zero value so Process literals get modePID.
    	modePID processMode = iota
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 22:06:47 UTC 2024
    - 12.8K bytes
    - Viewed (0)
  2. testing/internal-integ-testing/build.gradle.kts

    }
    
    description = "Collection of test fixtures for integration tests, internal use only"
    
    sourceSets {
        main {
            // Incremental Groovy joint-compilation doesn't work with the Error Prone annotation processor
            errorprone.enabled = false
        }
    }
    
    dependencies {
        api(project(":base-services")) {
            because("Part of the public API, used by spock AST transformer")
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 7.6K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/storage/cacher/metrics/metrics.go

    	)
    	InitCounter = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    			Namespace:      namespace,
    			Name:           "init_events_total",
    			Help:           "Counter of init events processed in watch cache broken by resource type.",
    			StabilityLevel: compbasemetrics.ALPHA,
    		},
    		[]string{"resource"},
    	)
    
    	EventsReceivedCounter = compbasemetrics.NewCounterVec(
    		&compbasemetrics.CounterOpts{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 07:39:23 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/DependencyGraphBuilder.java

                    // Some corner case result in the edge being removed, in that case it needs to be "removed"
                    module.addUnattachedDependency(dependency);
                }
                processed = true;
            }
            return processed;
        }
    
        /**
         * Attempts to resolve a target `ComponentState` for the given dependency.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 34.1K bytes
    - Viewed (0)
  5. pkg/scheduler/framework/types.go

    		Gated:                   pqi.Gated,
    	}
    }
    
    // PodInfo is a wrapper to a Pod with additional pre-computed information to
    // accelerate processing. This information is typically immutable (e.g., pre-processed
    // inter-pod affinity selectors).
    type PodInfo struct {
    	Pod                        *v1.Pod
    	RequiredAffinityTerms      []AffinityTerm
    	RequiredAntiAffinityTerms  []AffinityTerm
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 19:28:17 UTC 2024
    - 36.7K bytes
    - Viewed (0)
  6. pilot/pkg/model/envoyfilter.go

    	"istio.io/istio/pkg/config"
    	"istio.io/istio/pkg/config/labels"
    	"istio.io/istio/pkg/config/xds"
    	"istio.io/istio/pkg/util/sets"
    )
    
    // EnvoyFilterWrapper is a wrapper for the EnvoyFilter api object with pre-processed data
    type EnvoyFilterWrapper struct {
    	Name             string
    	Namespace        string
    	workloadSelector labels.Instance
    	Patches          map[networking.EnvoyFilter_ApplyTo][]*EnvoyFilterConfigPatchWrapper
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 13:57:28 UTC 2024
    - 7.1K bytes
    - Viewed (0)
  7. .teamcity/subprojects.json

        "unitTests": false,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "internal-instrumentation-processor",
        "path": "platforms/core-runtime/internal-instrumentation-processor",
        "unitTests": true,
        "functionalTests": false,
        "crossVersionTests": false
      },
      {
        "name": "internal-integ-testing",
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 31.7K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/classloader/TransformReplacer.java

         * If some versioned directories of the JAR haven't been processed, then these directories must contain presiding (overriding) resource with the same name but with
         * {@code NOT_TRANSFORMED.asBytes()} as body.
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  9. pkg/log/options.go

    	}
    
    	return s, level, nil
    }
    
    // AttachCobraFlags attaches a set of Cobra flags to the given Cobra command.
    //
    // Cobra is the command-line processor that Istio uses. This command attaches
    // the necessary set of flags to expose a CLI to let the user control all
    // logging options.
    func (o *Options) AttachCobraFlags(cmd *cobra.Command) {
    	o.AttachFlags(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  10. settings.gradle.kts

            subproject("instrumentation-agent-services")
            subproject("instrumentation-declarations")
            subproject("internal-instrumentation-api")
            subproject("internal-instrumentation-processor")
            subproject("io")
            subproject("stdlib-java-extensions")
            subproject("launcher")
            subproject("logging")
            subproject("logging-api")
            subproject("messaging")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:14 UTC 2024
    - 16.4K bytes
    - Viewed (0)
Back to top