Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 129 for targeting (0.22 sec)

  1. cmd/listen-notification-handlers.go

    			writeErrorResponse(ctx, w, toAPIError(ctx, err), r.URL)
    			return
    		}
    	}
    
    	rulesMap := event.NewRulesMap(eventNames, pattern, event.TargetID{ID: mustGetUUID()})
    
    	setEventStreamHeaders(w)
    
    	// Listen Publisher and peer-listen-client uses nonblocking send and hence does not wait for slow receivers.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 6K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.27.md

      - https://github.com/kubernetes-sigs/kustomize/pull/4954: Drop support for using gh: as a host (e.g. gh:kubernetes-sigs/kustomize). We were unable to find any usage of or basis for this and believe it may have been targeting a custom gitconfig shorthand syntax. ([#116598](https://github.com/kubernetes/kubernetes/pull/116598), [@natasha41575](https://github.com/natasha41575)) [SIG CLI]
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 23:01:06 UTC 2024
    - 455.3K bytes
    - Viewed (0)
  3. common-protos/k8s.io/api/core/v1/generated.proto

      // If not set then the ephemeral container uses the namespaces configured in the Pod spec.
      //
      // The container runtime must implement support for this feature. If the runtime does not
      // support namespace targeting then the result of setting this field is undefined.
      // +optional
      optional string targetContainerName = 2;
    }
    
    // EphemeralContainerCommon is a copy of all fields in Container to be inlined in
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 255.8K bytes
    - Viewed (0)
  4. pkg/apis/core/types.go

    	// If not set then the ephemeral container uses the namespaces configured in the Pod spec.
    	//
    	// The container runtime must implement support for this feature. If the runtime does not
    	// support namespace targeting then the result of setting this field is undefined.
    	// +optional
    	TargetContainerName string
    }
    
    // PodStatus represents information about the status of a pod. Status may trail the actual
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 268.9K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/core/v1/types_swagger_doc_generated.go

    }
    
    func (EphemeralContainer) SwaggerDoc() map[string]string {
    	return map_EphemeralContainer
    }
    
    var map_EphemeralContainerCommon = map[string]string{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 254.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/golang.org/x/sys/unix/syscall_linux.go

    }
    
    type SockaddrNFC struct {
    	DeviceIdx   uint32
    	TargetIdx   uint32
    	NFCProtocol uint32
    	raw         RawSockaddrNFC
    }
    
    func (sa *SockaddrNFC) sockaddr() (unsafe.Pointer, _Socklen, error) {
    	sa.raw.Sa_family = AF_NFC
    	sa.raw.Dev_idx = sa.DeviceIdx
    	sa.raw.Target_idx = sa.TargetIdx
    	sa.raw.Nfc_protocol = sa.NFCProtocol
    	return unsafe.Pointer(&sa.raw), SizeofSockaddrNFC, nil
    }
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 05:26:45 UTC 2024
    - 77.5K bytes
    - Viewed (0)
  7. src/debug/gosym/pclntab.go

    // but we have no idea whether we're using arm or not. This only
    // matters in the old (pre-Go 1.2) symbol table format, so it's not worth
    // fixing.
    const oldQuantum = 1
    
    func (t *LineTable) parse(targetPC uint64, targetLine int) (b []byte, pc uint64, line int) {
    	// The PC/line table can be thought of as a sequence of
    	//  <pc update>* <line update>
    	// batches. Each update batch results in a (pc, line) pair,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 25 19:43:24 UTC 2024
    - 18.8K bytes
    - Viewed (0)
  8. tests/integration/pilot/testdata/gateway-api-crd.yaml

                        targets a Service, it may have a distinct result per attached Gateway.
    
    
                        Policies targeting the same resource may have different effects depending on the
                        ancestors of those resources. For example, different Gateways targeting the same
                        Service may have different capabilities, especially if they have different underlying
                        implementations.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 09 02:01:51 UTC 2024
    - 912.2K bytes
    - Viewed (0)
  9. staging/src/k8s.io/api/core/v1/generated.proto

      // If not set then the ephemeral container uses the namespaces configured in the Pod spec.
      //
      // The container runtime must implement support for this feature. If the runtime does not
      // support namespace targeting then the result of setting this field is undefined.
      // +optional
      optional string targetContainerName = 2;
    }
    
    // EphemeralContainerCommon is a copy of all fields in Container to be inlined in
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 22:40:29 UTC 2024
    - 280.3K bytes
    - Viewed (0)
  10. 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)
Back to top