Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 21 for Potato (0.22 sec)

  1. pkg/istio-agent/agent.go

    				// is called by sdsServer.OnSecretUpdate, which triggers a push and eventually calls sdsservice.Generate
    				// TODO: extract the logic to detect expiration time, and use a simpler code to rotate to files.
    				_, _ = a.getWorkloadCerts(st)
    			})
    			_, _ = a.getWorkloadCerts(st)
    		}()
    	} else {
    		pkpConf := a.proxyConfig.GetPrivateKeyProvider()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jun 05 10:02:56 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. cmd/encryption-v1.go

    		}
    		if subtle.ConstantTimeCompare(oldKey, newKey) == 1 && sealedKey.Algorithm == crypto.SealAlgorithm {
    			return nil // don't rotate on equal keys if seal algorithm is latest
    		}
    		sealedKey = objectKey.Seal(newKey, sealedKey.IV, crypto.SSEC.String(), bucket, object)
    		crypto.SSEC.CreateMetadata(metadata, sealedKey)
    		return nil
    	default:
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  3. cluster/gce/gci/configure-helper.sh

        # Configure log rotation for all logs in /var/log, which is where k8s services
        # are configured to write their log files. Whenever logrotate is ran, this
        # config will:
        # * rotate the log file if its size is > 100Mb OR if one day has elapsed
        # * save rotated logs into a gzipped timestamped backup
        # * log file timestamp (controlled by 'dateformat') includes seconds too. This
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  4. cmd/batch-handlers.go

    		batchLogIf(j.ctx, err)
    		return
    	}
    	for result := range results {
    		if result.Err != nil {
    			batchLogIf(j.ctx, result.Err)
    			continue
    		}
    		// ignore batch-replicate.bin and batch-rotate.bin entries
    		if strings.HasSuffix(result.Item.Name, slashSeparator) {
    			continue
    		}
    		req := &BatchJobRequest{}
    		if err := req.load(ctx, j.objLayer, result.Item.Name); err != nil {
    			batchLogIf(ctx, err)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 56K bytes
    - Viewed (0)
  5. cmd/object-handlers_test.go

    		apiRouter.ServeHTTP(rec, req)
    		// Assert the response code with the expected status.
    		if rec.Code != testCase.expectedRespStatus {
    			if testCase.copySourceSame {
    				// encryption will rotate creds, so fail only for non-encryption scenario.
    				if GlobalKMS == nil {
    					t.Errorf("Test %d: %s:  Expected the response status to be `%d`, but instead found `%d`", i, instanceType, testCase.expectedRespStatus, rec.Code)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 10 15:50:49 UTC 2024
    - 161.9K bytes
    - Viewed (0)
  6. cluster/gce/util.sh

      flags+=" --cloud-provider=${CLOUD_PROVIDER_FLAG:-external}"
      # TODO(mtaufen): ROTATE_CERTIFICATES seems unused; delete it?
      if [[ -n "${ROTATE_CERTIFICATES:-}" ]]; then
        flags+=" --rotate-certificates=true"
      fi
      if [[ -n "${MAX_PODS_PER_NODE:-}" ]]; then
        flags+=" --max-pods=${MAX_PODS_PER_NODE}"
      fi
      echo "$flags"
    }
    
    # Sets KUBELET_ARGS with the kubelet flags for Linux nodes.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssagen/ssa.go

    	// ReverseBytes inlines correctly, no need to intrinsify it.
    	// Nothing special is needed for targets where ReverseBytes16 lowers to a rotate
    	// On Power10, 16-bit rotate is not available so use BRH instruction
    	if buildcfg.GOPPC64 >= 10 {
    		addF("math/bits", "ReverseBytes16",
    			func(s *state, n *ir.CallExpr, args []*ssa.Value) *ssa.Value {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 19:44:43 UTC 2024
    - 284.9K bytes
    - Viewed (0)
  8. api/openapi-spec/v3/apis__batch__v1_openapi.json

                "description": "expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
                "format": "int64",
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 485.4K bytes
    - Viewed (0)
  9. pkg/generated/openapi/zz_generated.openapi.go

    							Description: "expirationSeconds is the requested duration of validity of the service account token. As the token approaches expiration, the kubelet volume plugin will proactively rotate the service account token. The kubelet will start trying to rotate the token if the token is older than 80 percent of its time to live or if the token is older than 24 hours.Defaults to 1 hour and must be at least 10 minutes.",
    							Type:        []string{"integer"},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 18:37:07 UTC 2024
    - 3M bytes
    - Viewed (0)
  10. RELEASE.md

    *   Add `string_to_index_table`, which returns a lookup table that matches
        strings to indices.
    *   Support restore session from checkpoint files in v2 in
        `contrib/session_bundle`.
    *   Added a tf.contrib.image.rotate function for arbitrary angles.
    *   Added `tf.contrib.framework.filter_variables` as a convenience function to
        filter lists of variables based on regular expressions.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 23:24:08 UTC 2024
    - 730.3K bytes
    - Viewed (0)
Back to top