Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 398 for Sec (0.02 sec)

  1. pkg/config/analysis/analyzers/testdata/pod-sec-uid.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: pod-sec-uid
      labels:
        app: helloworld
        version: v2
    spec:
      securityContext:
        runAsUser: 1337
      containers:
      - name: helloworld
        image: docker.io/istio/examples-helloworld-v2
        resources:
          requests:
            cpu: "100m"
        imagePullPolicy: IfNotPresent #Always
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 361 bytes
    - Viewed (0)
  2. pkg/config/analysis/analyzers/testdata/deployment-con-sec-uid.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: deploy-con-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          labels:
            app: helloworld
            version: v1
        spec:
          securityContext:
            runAsUser: 1337
          containers:
          - name: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 651 bytes
    - Viewed (0)
  3. pkg/config/analysis/analyzers/testdata/pod-con-sec-uid.yaml

    apiVersion: v1
    kind: Pod
    metadata:
      name: con-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      containers:
      - name: helloworld
        image: docker.io/istio/examples-helloworld-v1
        securityContext:
          runAsUser: 1337
        resources:
          requests:
            cpu: "100m"
        imagePullPolicy: IfNotPresent #Always
        ports:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 364 bytes
    - Viewed (0)
  4. pkg/config/analysis/analyzers/testdata/deployment-pod-sec-uid.yaml

    apiVersion: apps/v1
    kind: Deployment
    metadata:
      name: deploy-pod-sec-uid
      labels:
        app: helloworld
        version: v1
    spec:
      replicas: 1
      selector:
        matchLabels:
          app: helloworld
          version: v1
      template:
        metadata:
          labels:
            app: helloworld
            version: v1
        spec:
          securityContext:
            runAsUser: 1337
          containers:
          - name: helloworld
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Nov 17 12:28:05 UTC 2021
    - 600 bytes
    - Viewed (0)
  5. src/cmd/vendor/golang.org/x/sys/unix/timestruct.go

    func TimeToTimespec(t time.Time) (Timespec, error) {
    	sec := t.Unix()
    	nsec := int64(t.Nanosecond())
    	ts := setTimespec(sec, nsec)
    
    	// Currently all targets have either int32 or int64 for Timespec.Sec.
    	// If there were a new target with floating point type for it, we have
    	// to consider the rounding error.
    	if int64(ts.Sec) != sec {
    		return Timespec{}, ERANGE
    	}
    	return ts, nil
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. pilot/pkg/xds/ecds_test.go

    	wasmPlugin             = makeWasmPlugin("default-plugin", "default", "")
    	wasmPluginWithSec      = makeWasmPlugin("default-plugin-with-sec", "default", "default-pull-secret")
    	wasmPluginWrongSec     = makeWasmPlugin("default-plugin-wrong-sec", "default", "wrong-secret")
    	wasmPluginWrongSecType = makeWasmPlugin("default-plugin-wrong-sec-type", "default", "wrong-type-pull-secret")
    	rootWasmPluginWithSec  = makeWasmPlugin("root-plugin", "istio-system", "root-pull-secret")
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 27 16:59:05 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd_amd64.go

    // license that can be found in the LICENSE file.
    
    //go:build amd64 && netbsd
    
    package unix
    
    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: nsec}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint64(fd)
    	k.Filter = uint32(mode)
    	k.Flags = uint32(flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 814 bytes
    - Viewed (0)
  8. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd_arm.go

    // license that can be found in the LICENSE file.
    
    //go:build arm && netbsd
    
    package unix
    
    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: int32(nsec)}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint32(fd)
    	k.Filter = uint32(mode)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 819 bytes
    - Viewed (0)
  9. src/cmd/vendor/golang.org/x/sys/unix/syscall_netbsd_arm64.go

    // license that can be found in the LICENSE file.
    
    //go:build arm64 && netbsd
    
    package unix
    
    func setTimespec(sec, nsec int64) Timespec {
    	return Timespec{Sec: sec, Nsec: nsec}
    }
    
    func setTimeval(sec, usec int64) Timeval {
    	return Timeval{Sec: sec, Usec: int32(usec)}
    }
    
    func SetKevent(k *Kevent_t, fd, mode, flags int) {
    	k.Ident = uint64(fd)
    	k.Filter = uint32(mode)
    	k.Flags = uint32(flags)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 814 bytes
    - Viewed (0)
  10. guava/src/com/google/common/net/HttpHeaders.java

      /**
       * The HTTP <a href="https://wicg.github.io/ua-client-hints/#sec-ch-ua-model">{@code
       * Sec-CH-UA-Model}</a> header field name.
       *
       * @since 30.0
       */
      public static final String SEC_CH_UA_MODEL = "Sec-CH-UA-Model";
      /**
       * The HTTP <a href="https://wicg.github.io/ua-client-hints/#sec-ch-ua-platform">{@code
       * Sec-CH-UA-Platform}</a> header field name.
       *
       * @since 30.0
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed May 01 18:44:57 UTC 2024
    - 34.3K bytes
    - Viewed (0)
Back to top