Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,989 for retain (0.15 sec)

  1. pkg/controller/statefulset/stateful_set_utils.go

    		if hasOwnerRef(claim, set) ||
    			hasOwnerRef(claim, pod) {
    			return false
    		}
    	case policy.WhenScaled == retain && policy.WhenDeleted == delete:
    		if !hasOwnerRef(claim, set) ||
    			hasOwnerRef(claim, pod) {
    			return false
    		}
    	case policy.WhenScaled == delete && policy.WhenDeleted == retain:
    		if hasOwnerRef(claim, set) {
    			return false
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 05 19:06:41 UTC 2024
    - 26.7K bytes
    - Viewed (0)
  2. internal/bucket/object/lock/lock_test.go

    	tests := []struct {
    		value       DefaultRetention
    		expectedErr error
    		expectErr   bool
    	}{
    		{
    			value:       DefaultRetention{Mode: "retain"},
    			expectedErr: fmt.Errorf("unknown retention mode retain"),
    			expectErr:   true,
    		},
    		{
    			value:       DefaultRetention{Mode: RetGovernance},
    			expectedErr: fmt.Errorf("either Days or Years must be specified"),
    			expectErr:   true,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Feb 22 06:26:06 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  3. subprojects/core/src/main/java/org/gradle/cache/internal/DefaultCrossBuildInMemoryCacheFactory.java

                if (v != null) {
                    return v;
                }
    
                v = maybeGetRetainedValue(key);
                if (v != null) {
                    // Retain strong reference
                    valuesForThisSession.put(key, v);
                    return v;
                }
    
                return null;
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 11 20:23:28 UTC 2021
    - 10.6K bytes
    - Viewed (0)
  4. internal/bucket/object/lock/lock.go

    	// ntp server is disabled
    	if ntpServer == "" {
    		return time.Now().UTC(), nil
    	}
    	return ntp.Time(ntpServer)
    }
    
    // Retention - bucket level retention configuration.
    type Retention struct {
    	Mode        RetMode
    	Validity    time.Duration
    	LockEnabled bool
    }
    
    // Retain - check whether given date is retainable by validity time.
    func (r Retention) Retain(created time.Time) bool {
    	t, err := UTCNowNTP()
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. cluster/addons/volumesnapshots/crd/snapshot.storage.k8s.io_volumesnapshotcontents.yaml

                        and its physical snapshot on the underlying storage system should
                        be deleted when its bound VolumeSnapshot is deleted. Supported values
                        are "Retain" and "Delete". "Retain" means that the VolumeSnapshotContent
                        and its physical snapshot on underlying storage system are kept.
                        "Delete" means that the VolumeSnapshotContent and its physical snapshot
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 26 07:24:12 UTC 2022
    - 25.6K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/DefaultClassLoaderCache.java

            }
    
            return cachedLoader.retain(id);
        }
    
        private ClassLoader createClassLoader(ManagedClassLoaderSpec spec) {
            return classLoaderFactory.createChildClassLoader(spec.name, spec.parent, spec.classPath, spec.implementationHash);
        }
    
        @VisibleForTesting
        public int size() {
            synchronized (lock) {
                return bySpec.size();
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 10.4K bytes
    - Viewed (0)
  7. pkg/log/options.go

    	// timestamp encoded in their filename. Note that a day is defined as 24
    	// hours and may not exactly correspond to calendar days due to daylight
    	// savings, leap seconds, etc. The default is to remove log files
    	// older than 30 days.
    	RotationMaxAge int
    
    	// RotationMaxBackups is the maximum number of old log files to retain.  The default
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 07 04:04:34 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. LICENSE

              stating that You changed the files; and
    
          (c) You must retain, in the Source form of any Derivative Works
              that You distribute, all copyright, patent, trademark, and
              attribution notices from the Source form of the Work,
              excluding those notices that do not pertain to any part of
              the Derivative Works; and
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jan 23 11:07:23 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  9. tensorflow/compiler/jit/xla_compile_on_demand_op.cc

      compile_options.is_entry_computation = true;
      // Optimization: where possible, have the computation return a naked array
      // rather than a one-element tuple.
      compile_options.always_return_tuple = false;
      if (for_pjrt) {
        compile_options.use_tuple_arg = false;
        compile_options.always_return_tuple = true;
      }
    
      return compile_options;
    }
    
    // Gets `variables` from `ctx`, locks them and builds XlaCompiler::Arguments
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 29 08:39:39 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. cmd/metacache-walk.go

    	b, err := opts.MarshalMsg(grid.GetByteBuffer()[:0])
    	if err != nil {
    		return toStorageErr(err)
    	}
    
    	st, err := client.gridConn.NewStream(ctx, grid.HandlerWalkDir, b)
    	if err != nil {
    		return toStorageErr(err)
    	}
    	return toStorageErr(st.Results(func(in []byte) error {
    		_, err := wr.Write(in)
    		return err
    	}))
    }
    
    // WalkDirHandler - remote caller to list files and folders in a requested directory path.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Jun 01 05:17:37 UTC 2024
    - 12.4K bytes
    - Viewed (0)
Back to top