Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 105 for target01 (0.17 sec)

  1. platforms/jvm/plugins-application/src/main/java/org/gradle/jvm/application/tasks/CreateStartScripts.java

        /**
         * Returns the full path to the Unix script. The target directory is represented by the output directory, the file name is the application name without a file extension.
         */
        @Internal
        public File getUnixScript() {
            return new File(getOutputDir(), getApplicationName());
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 23:38:57 UTC 2024
    - 13.5K bytes
    - Viewed (0)
  2. src/runtime/cpuprof.go

    	// by the fact that only one SIGPROF can be handled by the
    	// process at a time. If not, this lock will serialize those too.
    	// The use of timer_create(2) on Linux to request process-targeted
    	// signals may have changed this.)
    	for !prof.signalLock.CompareAndSwap(0, 1) {
    		// TODO: Is it safe to osyield here? https://go.dev/issue/52672
    		osyield()
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 8.5K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/docs/userguide/reference/third_party_integration.adoc

    The JVM running the Tooling API client and the one running the daemon can be different.
    At the same time, classes that are sent to the build via custom build actions need to be targeted to the lowest supported Java version.
    The JVM versions supported by Gradle is version-specific.
    The upper bound is defined in the <<compatibility.adoc#compatibility,compatibility matrix>>.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Feb 05 18:33:11 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/generated.proto

      // Note that the UserAgent is provided by the client, and must not be trusted.
      // +optional
      optional string userAgent = 16;
    
      // Object reference this request is targeted at.
      // Does not apply for List-type requests, or non-resource requests.
      // +optional
      optional ObjectReference objectRef = 9;
    
      // The response status, populated even when the ResponseObject is not a Status type.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container_linux.go

    	}
    
    	if nsTarget != nil && lc.SecurityContext.NamespaceOptions.Pid == runtimeapi.NamespaceMode_CONTAINER {
    		lc.SecurityContext.NamespaceOptions.Pid = runtimeapi.NamespaceMode_TARGET
    		lc.SecurityContext.NamespaceOptions.TargetId = nsTarget.ID
    	}
    
    	return lc, nil
    }
    
    // generateLinuxContainerResources generates linux container resources config for runtime
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  6. pkg/workloadapi/workload.proto

        // is included, along with potential extra TLV headers:
        // 0xD0 - The SPIFFE identity of the source workload
        // 0xD1 - The FQDN or Hostname of the targeted Service
        PROXY = 1;
      }
    
      // A target natively handles this type of traffic.  
      Protocol protocol = 1;
    
      // optional: if set, traffic should be sent to this port after the last zTunnel hop
      uint32 port = 2;
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 12 18:02:35 UTC 2024
    - 12.9K bytes
    - Viewed (0)
  7. cmd/admin-handlers.go

    	for _, tgt := range globalEventNotifier.Targets() {
    		targetIDStatus := make(map[string]madmin.Status)
    		active, _ := tgt.IsActive()
    		targetID := tgt.ID()
    		if active {
    			targetIDStatus[targetID.ID] = madmin.Status{Status: string(madmin.ItemOnline)}
    		} else {
    			targetIDStatus[targetID.ID] = madmin.Status{Status: string(madmin.ItemOffline)}
    		}
    		list := lambdaMap[targetID.Name]
    		list = append(list, targetIDStatus)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 98K bytes
    - Viewed (0)
  8. staging/src/k8s.io/apiserver/plugin/pkg/authorizer/webhook/webhook.go

    // and returns a SubjectAccessReviewInterface that uses that client. Note that the client submits SubjectAccessReview
    // requests to the exact path specified in the kubeconfig file, so arbitrary non-API servers can be targeted.
    func subjectAccessReviewInterfaceFromConfig(config *rest.Config, version string, retryBackoff wait.Backoff) (subjectAccessReviewer, error) {
    	localScheme := runtime.NewScheme()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 04 19:01:15 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  9. pkg/config/analysis/msg/messages.gen.go

    	// Description: Deployments with `image: auto` should be targeted for injection.
    	ImageAutoWithoutInjectionWarning = diag.NewMessageType(diag.Warning, "IST0146", "%s %s contains `image: auto` but does not match any Istio injection webhook selectors.")
    
    	// ImageAutoWithoutInjectionError defines a diag.MessageType for message "ImageAutoWithoutInjectionError".
    	// Description: Pods with `image: auto` should be targeted for injection.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 22 10:13:03 UTC 2024
    - 43.2K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    It takes a comma (`,`) separated list of module notations.
    In this mode, the existing lock state is still used as input to resolution, filtering out the modules targeted by the update.
    
    ----
    ❯ gradle dependencies --update-locks org.apache.commons:commons-lang3,org.slf4j:slf4j-api
    ----
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
Back to top