Search Options

Results per page
Sort
Preferred Languages
Advance

Results 141 - 150 of 214 for target01 (0.28 sec)

  1. 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)
  2. 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)
  3. 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)
  4. 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)
  5. src/cmd/go/internal/mvs/mvs_test.go

    downgrade A B2.hidden: A B2.hidden C2
    
    # Cycles involving the target.
    
    # The target must be the newest version of itself.
    name: cycle1
    A: B1
    B1: A1
    B2: A2
    B3: A3
    build A:      A B1
    upgrade A B2: A B2
    upgrade* A:   A B3
    
    # golang.org/issue/29773:
    # Requirements of older versions of the target
    # must be carried over.
    name: cycle2
    A: B1
    A1: C1
    A2: D1
    B1: A1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 19:01:26 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  6. 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)
  7. 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)
  8. staging/src/k8s.io/apiserver/pkg/apis/audit/v1/types.go

    	// Note that the UserAgent is provided by the client, and must not be trusted.
    	// +optional
    	UserAgent string `json:"userAgent,omitempty" protobuf:"bytes,16,opt,name=userAgent"`
    	// Object reference this request is targeted at.
    	// Does not apply for List-type requests, or non-resource requests.
    	// +optional
    	ObjectRef *ObjectReference `json:"objectRef,omitempty" protobuf:"bytes,9,opt,name=objectRef"`
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:24:10 UTC 2023
    - 14.5K bytes
    - Viewed (0)
  9. maven-core/src/main/java/org/apache/maven/internal/aether/DefaultRepositorySystemSessionFactory.java

        /**
         * User property for selecting dependency manager behaviour regarding transitive dependencies and dependency
         * management entries in their POMs. Maven 3 targeted full backward compatibility with Maven2, hence it ignored
         * dependency management entries in transitive dependency POMs. Maven 4 enables "transitivity" by default, hence
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 27.5K bytes
    - Viewed (0)
  10. tests/integration/pilot/ingress_test.go

    						}
    						return nil
    					}, retry.Timeout(time.Second*90))
    				}
    			})
    
    			// setup another ingress pointing to a different route; the ingress will have an ingress class that should be targeted at first
    			const updateIngressName = "update-test-ingress"
    			if err := t.ConfigIstio().YAML(apps.Namespace.Name(), ingressClassConfig,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 19.5K bytes
    - Viewed (0)
Back to top