Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of about 10,000 for util2 (0.06 sec)

  1. pkg/controller/volume/attachdetach/util/util.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package util
    
    import (
    	"errors"
    	"fmt"
    	"strings"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/types"
    	"k8s.io/apimachinery/pkg/util/sets"
    	corelisters "k8s.io/client-go/listers/core/v1"
    	"k8s.io/component-helpers/storage/ephemeral"
    	"k8s.io/klog/v2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 10:42:15 UTC 2024
    - 12K bytes
    - Viewed (0)
  2. istioctl/pkg/tag/util.go

    		wh := webhook.Webhooks[i]
    		// this is an abomination, but if this isn't a per-revision webhook, we want to make it ineffectual
    		// without deleting it. Add a nonsense match.
    		wh.NamespaceSelector = util.NeverMatch
    		wh.ObjectSelector = util.NeverMatch
    		webhook.Webhooks[i] = wh
    	}
    	admit := client.AdmissionregistrationV1().MutatingWebhookConfigurations()
    	_, err = admit.Update(ctx, &webhook, metav1.UpdateOptions{})
    	if err != nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jan 16 17:43:42 UTC 2024
    - 5.4K bytes
    - Viewed (0)
  3. pkg/api/storage/util.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package storage
    
    import (
    	"fmt"
    
    	"k8s.io/apimachinery/pkg/util/validation/field"
    	nodeapi "k8s.io/kubernetes/pkg/api/node"
    	"k8s.io/kubernetes/pkg/apis/storage"
    )
    
    func GetWarningsForStorageClass(sc *storage.StorageClass) []string {
    	var warnings []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 25 07:15:34 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  4. maven-api-impl/src/test/remote-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom

      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>plexus-utils</artifactId>
      <name>Plexus Common Utilities</name>
      <version>1.1</version>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>org/codehaus/plexus/util/FileBasedTestCase.java</exclude>
                <exclude>**/Test*.java</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 767 bytes
    - Viewed (0)
  5. maven-core/src/test/resources/org/apache/maven/extension/test-extension-repo/org/codehaus/plexus/plexus-utils/1.1/plexus-utils-1.1.pom

      </parent>
      <modelVersion>4.0.0</modelVersion>
      <artifactId>plexus-utils</artifactId>
      <name>Plexus Common Utilities</name>
      <version>1.1</version>
      <build>
        <plugins>
          <plugin>
            <artifactId>maven-surefire-plugin</artifactId>
            <configuration>
              <excludes>
                <exclude>org/codehaus/plexus/util/FileBasedTestCase.java</exclude>
                <exclude>**/Test*.java</exclude>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Oct 16 20:15:40 UTC 2007
    - 767 bytes
    - Viewed (0)
  6. pkg/webhooks/util/util.go

    // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    // See the License for the specific language governing permissions and
    // limitations under the License.
    
    package util
    
    import (
    	"crypto/x509"
    	"encoding/pem"
    	"errors"
    	"fmt"
    
    	"istio.io/istio/pilot/pkg/keycertbundle"
    )
    
    type ConfigError struct {
    	err    error
    	reason string
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Nov 14 17:33:33 UTC 2022
    - 1.5K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apimachinery/pkg/test/util.go

    	"k8s.io/apimachinery/pkg/apis/testapigroup/v1"
    	"k8s.io/apimachinery/pkg/runtime"
    	"k8s.io/apimachinery/pkg/runtime/schema"
    	apiserializer "k8s.io/apimachinery/pkg/runtime/serializer"
    	utilruntime "k8s.io/apimachinery/pkg/util/runtime"
    )
    
    // List and ListV1 should be kept in sync with k8s.io/kubernetes/pkg/api#List
    // and k8s.io/api/core/v1#List.
    //
    // +k8s:deepcopy-gen=true
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 23 11:06:32 UTC 2018
    - 2.1K bytes
    - Viewed (0)
  8. pkg/probe/util.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package probe
    
    import (
    	"fmt"
    	"strconv"
    
    	v1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/util/intstr"
    )
    
    func ResolveContainerPort(param intstr.IntOrString, container *v1.Container) (int, error) {
    	port := -1
    	var err error
    	switch param.Type {
    	case intstr.Int:
    		port = param.IntValue()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Oct 19 16:51:52 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/audit/policy/util.go

    See the License for the specific language governing permissions and
    limitations under the License.
    */
    
    package policy
    
    import (
    	"k8s.io/apimachinery/pkg/util/sets"
    	"k8s.io/apiserver/pkg/apis/audit"
    )
    
    // AllStages returns all possible stages
    func AllStages() sets.String {
    	return sets.NewString(
    		string(audit.StageRequestReceived),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Apr 09 16:29:20 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. maven-core/src/test/resources/apiv4-repo/org/codehaus/plexus/plexus-utils/1.4.5/plexus-utils-1.4.5.jar

    public static java.util.Map mergeMaps(java.util.Map, java.util.Map); public static java.util.Map mergeMaps(java.util.Map[]); public static java.util.Collection intersection(java.util.Collection, java.util.Collection); public static java.util.Collection subtract(java.util.Collection, java.util.Collection); public static java.util.Map getCardinalityMap(java.util.Collection); public static java.util.List iteratorToList(java.util.Iterator); private static final int getFreq(Object, java.util.Map); } org/c...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Sun Oct 02 08:41:25 UTC 2022
    - 200.2K bytes
    - Viewed (0)
Back to top