Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 240 for seas (0.06 sec)

  1. src/time/zoneinfo.go

    	}
    	off += mins * secondsPerMinute
    	if len(s) == 0 || s[0] != ':' {
    		if neg {
    			off = -off
    		}
    		return off, s, true
    	}
    
    	var secs int
    	secs, s, ok = tzsetNum(s[1:], 0, 59)
    	if !ok {
    		return 0, "", false
    	}
    	off += secs
    
    	if neg {
    		off = -off
    	}
    	return off, s, true
    }
    
    // ruleKind is the kinds of rules that can be seen in a tzset string.
    type ruleKind int
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:21:30 UTC 2024
    - 18.2K bytes
    - Viewed (0)
  2. docs/security/README.md

    - Seal the KMS such that it cannot be accessed by MinIO server anymore. That will lock **all** SSE-S3 encrypted objects protected by master keys stored on the KMS. All these objects can not be decrypted as long as the KMS is sealed.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Feb 12 00:51:25 UTC 2022
    - 13.8K bytes
    - Viewed (0)
  3. pkg/kube/kclient/index_test.go

    		return []string{pod.Spec.ServiceAccountName}
    	}, controllers.EventHandler[*corev1.Pod]{
    		AddFunc: func(obj *corev1.Pod) {
    			// Assert that our handler sees the incoming update (and doesn't run before)
    			sa := obj.Spec.ServiceAccountName
    			got := index.Lookup(sa)
    			for _, p := range got {
    				if p.Name == obj.Name {
    					adds.Inc()
    					return
    				}
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 04 03:49:30 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. src/crypto/tls/ech.go

    		return err
    	}
    	serializedOuter, err := outer.marshal()
    	if err != nil {
    		return err
    	}
    	serializedOuter = serializedOuter[4:] // strip the four byte prefix
    	encryptedInner, err := ech.hpkeContext.Seal(serializedOuter, encodedInner)
    	if err != nil {
    		return err
    	}
    	outer.encryptedClientHello, err = generateOuterECHExt(ech.config.ConfigID, ech.kdfID, ech.aeadID, encapKey, encryptedInner)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 03:10:12 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  5. internal/kms/secret-key.go

    	}
    	aead, err := cipher.NewGCM(block)
    	if err != nil {
    		return DEK{}, err
    	}
    
    	plaintext, err := sioutil.Random(32)
    	if err != nil {
    		return DEK{}, err
    	}
    	ciphertext := aead.Seal(nil, nonce, plaintext, associatedData)
    	ciphertext = append(ciphertext, random...)
    	return DEK{
    		KeyID:      req.Name,
    		Version:    0,
    		Plaintext:  plaintext,
    		Ciphertext: ciphertext,
    	}, nil
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 07 23:55:37 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  6. src/cmd/cgo/internal/testplugin/testdata/host/host.go

    	}
    
    	// sub/plugin1.so is a different plugin with the same name as
    	// the already loaded plugin. It also depends on common. Test
    	// that we can load the different plugin, it is actually
    	// different, and that it sees the same common package.
    	subpPath, err := filepath.Abs("sub/plugin1.so")
    	if err != nil {
    		log.Fatalf("filepath.Abs(%q) failed: %v", subpPath, err)
    	}
    	subp, err := plugin.Open(subpPath)
    	if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 12 11:59:56 UTC 2023
    - 4.9K bytes
    - Viewed (0)
  7. platforms/core-configuration/file-collections/src/testFixtures/groovy/org/gradle/api/internal/file/collections/AbstractDirectoryWalkerTest.groovy

            visited.size() == 1
            visited[0] == file.absolutePath
    
            cleanup:
            link.delete()
    
            where:
            walkerInstance << walkers
        }
    
        def "file walker sees a snapshot of file metadata even if files are deleted after walking has started"() {
            given:
            def rootDir = tmpDir.createDir("root")
            long minimumTimestamp = (System.currentTimeMillis() / 1000 * 1000) - 2000
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 7K bytes
    - Viewed (0)
  8. cluster/gce/gci/flexvolume_node_setup.sh

    # 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.
    
    # Sets up FlexVolume drivers on GCE COS instances using mounting utilities packaged in a Google
    # Container Registry image.
    # The user-provided FlexVolume driver(s) must be under /flexvolume of the image filesystem.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 13 17:58:51 UTC 2020
    - 5.8K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/fairqueuing/queueset/doc.go

    // time.  The total number of requests executing is sum[over q]
    // reqs(q, t) and if that is less than C then virtual time is not
    // advancing as fast as it would if all C seats were occupied; in this
    // case the numerator of the quotient in that derivative should be
    // adjusted proportionally.  Putting it all together for fair queing
    // for server requests: at a particular time t, the partial derivative
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 08 12:33:30 UTC 2024
    - 6.1K bytes
    - Viewed (0)
  10. pkg/kube/kclient/crdwatcher.go

    // The problem we are trying to solve is:
    // * User installs CRDs with Foo v1alpha1
    // * Istio vNext starts watching Foo at v1
    // * user upgrades to Istio vNext. It sees Foo exists, and tries to watch v1. This fails.
    // The user may have opted into using an experimental CRD, but not to experimental usage *in Istio* so this isn't acceptable.
    func minimumVersionFilter(t any) bool {
    	// Setup a filter
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 25 14:44:17 UTC 2024
    - 5.7K bytes
    - Viewed (0)
Back to top