Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 18 for managed (0.18 sec)

  1. pilot/pkg/config/kube/gateway/conversion.go

    		return gs
    	})
    }
    
    // IsManaged checks if a Gateway is managed (ie we create the Deployment and Service) or unmanaged.
    // This is based on the address field of the spec. If address is set with a Hostname type, it should point to an existing
    // Service that handles the gateway traffic. If it is not set, or refers to only a single IP, we will consider it managed and provision the Service.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 04:34:37 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  2. pkg/controller/job/job_controller.go

    		if job != nil {
    			// Skip cleanup of finalizers for pods owned by a job managed by an external controller
    			if controllerName := managedByExternalController(job); controllerName != nil {
    				logger.V(2).Info("Skip cleanup of the job finalizer for a pod owned by a job that is managed by an external controller", "key", key, "podUID", sharedPod.UID, "jobUID", job.UID, "controllerName", controllerName)
    				return nil
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 23:56:37 UTC 2024
    - 77.6K bytes
    - Viewed (0)
  3. cmd/kubelet/app/server.go

    // buildClientCertificateManager creates a certificate manager that will use certConfig to request a client certificate
    // if no certificate is available, or the most recent clientConfig (which is assumed to point to the cert that the manager will
    // write out).
    func buildClientCertificateManager(certConfig, clientConfig *restclient.Config, certDir string, nodeName types.NodeName) (certificate.Manager, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 07 00:05:34 UTC 2024
    - 53.9K bytes
    - Viewed (0)
  4. maven-api-impl/src/main/java/org/apache/maven/internal/impl/model/DefaultModelValidator.java

                                Version.V20,
                                prefix + prefix2 + "type",
                                key,
                                "must be 'pom' to import the managed dependencies.",
                                dependency);
                    } else if (dependency.getClassifier() != null
                            && !dependency.getClassifier().isEmpty()) {
                        addViolation(
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Jun 10 11:04:53 UTC 2024
    - 73.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kuberuntime/kuberuntime_container.go

    				ContainerPath:  terminationMessagePath,
    				SelinuxRelabel: selinuxRelabel,
    			})
    		}
    	}
    
    	return volumeMounts
    }
    
    // getKubeletContainers lists containers managed by kubelet.
    // The boolean parameter specifies whether returns all containers including
    // those already exited and dead containers (used for garbage collection).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 54.7K bytes
    - Viewed (0)
  6. cmd/api-errors.go

    		Description:    "Unknown tag directive.",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrInvalidEncryptionMethod: {
    		Code:           "InvalidArgument",
    		Description:    "Server Side Encryption with AWS KMS managed key requires HTTP header x-amz-server-side-encryption : aws:kms",
    		HTTPStatusCode: http.StatusBadRequest,
    	},
    	ErrIncompatibleEncryptionMethod: {
    		Code:           "InvalidArgument",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 92.1K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/docs/userguide/releases/upgrading/upgrading_version_8.adoc

    or migrate to link:jvm_test_suite_plugin.html[Test Suites], where these dependencies are managed automatically.
    
    ===== Test Suites
    
    Builds that use test suites will not be affected by this change.
    Test suites manage the test
    framework dependencies automatically and do not require dependencies to be explicitly declared.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 17:01:07 UTC 2024
    - 90.7K bytes
    - Viewed (0)
  8. src/net/http/transport.go

    // HTTPS, and HTTP proxies (for either HTTP or HTTPS with CONNECT).
    //
    // By default, Transport caches connections for future re-use.
    // This may leave many open connections when accessing many hosts.
    // This behavior can be managed using [Transport.CloseIdleConnections] method
    // and the [Transport.MaxIdleConnsPerHost] and [Transport.DisableKeepAlives] fields.
    //
    // Transports should be reused instead of created as needed.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  9. staging/publishing/rules.yaml

          branch: release-1.30
        - repository: controller-manager
          branch: release-1.30
        - repository: component-helpers
          branch: release-1.30
        - repository: kms
          branch: release-1.30
        source:
          branch: release-1.30
          dirs:
          - staging/src/k8s.io/cloud-provider
      library: true
    - destination: kube-controller-manager
      branches:
      - name: master
        dependencies:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 09:33:40 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/devicemanager/manager_test.go

    )
    
    const (
    	testResourceName = "fake-domain/resource"
    )
    
    func newWrappedManagerImpl(socketPath string, manager *ManagerImpl) *wrappedManagerImpl {
    	w := &wrappedManagerImpl{
    		ManagerImpl: manager,
    		callback:    manager.genericDeviceUpdateCallback,
    	}
    	w.socketdir, _ = filepath.Split(socketPath)
    	w.server, _ = plugin.NewServer(socketPath, w, w)
    	return w
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 65K bytes
    - Viewed (0)
Back to top