Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 2,273 for deflated (0.33 sec)

  1. platforms/documentation/docs/src/docs/userguide/authoring-builds/directory_layout.adoc

    +
    If not, directories for release versions are deleted after 30 days of inactivity, and snapshot versions after 7 days.
    - Shared caches in `caches/` (e.g., `jars-*`) are checked for whether they are still in use.
    +
    If no Gradle version still uses them, they are deleted.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 24 23:00:38 UTC 2024
    - 13K bytes
    - Viewed (0)
  2. platforms/jvm/platform-jvm/src/main/java/org/gradle/api/internal/tasks/JvmConstants.java

         * be declared.
         *
         * @since 3.4
         */
        public static final String API_CONFIGURATION_NAME = "api";
    
        /**
         * The name of the implementation configuration, where dependencies that are only used internally by
         * a component should be declared.
         *
         * @since 3.4
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Mar 13 19:52:38 UTC 2024
    - 7K bytes
    - Viewed (0)
  3. pkg/volume/util/recyclerclient/recycler_client.go

    					if pod.Status.Message != "" {
    						return fmt.Errorf(pod.Status.Message)
    					}
    					return fmt.Errorf("pod failed, pod.Status.Message unknown")
    				}
    
    			case watch.Deleted:
    				return fmt.Errorf("recycler pod was deleted")
    
    			case watch.Error:
    				return fmt.Errorf("recycler pod watcher failed")
    			}
    
    		case *v1.Event:
    			// Event received
    			podEvent := event.Object.(*v1.Event)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jul 26 17:14:05 UTC 2022
    - 8.5K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/declaring_repositories.adoc

    |===
    |Mode |Description |Default? |Use-Case
    
    |`PREFER_PROJECT`
    |Any repository declared on a project will cause the project to use the repositories declared by the project, ignoring those declared in settings.
    |Yes
    |Useful when teams need to use different repositories not common among subprojects.
    
    |`PREFER_SETTINGS`
    |Any repository declared directly in a project, either directly or via a plugin, will be ignored.
    |No
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 07 01:37:51 UTC 2023
    - 43.2K bytes
    - Viewed (0)
  5. pkg/controller/volume/pvcprotection/pvc_protection_controller.go

    	// or
    	// b) was force-deleted.
    	//
    	// It's now just waiting for garbage collection. We could wait
    	// for it to actually get removed, but that may be blocked by
    	// finalizers for the pod and thus get delayed.
    	//
    	// Worse, it is possible that there is a cyclic dependency
    	// (pod finalizer waits for PVC to get removed, PVC protection
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 14K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/options/token.go

    	bto := &BootstrapTokenOptions{&bootstraptokenv1.BootstrapToken{}, ""}
    	bootstraptokenv1.SetDefaults_BootstrapToken(bto.BootstrapToken)
    	return bto
    }
    
    // BootstrapTokenOptions is a wrapper struct for adding bootstrap token-related flags to a FlagSet
    // and applying the parsed flags to a InitConfiguration object later at runtime
    // TODO: In the future, we might want to group the flags in a better way than adding them all individually like this
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 21 10:34:21 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/types2/check.go

    	for i := top; i < len(check.delayed); i++ {
    		a := &check.delayed[i]
    		if check.conf.Trace {
    			if a.desc != nil {
    				check.trace(a.desc.pos.Pos(), "-- "+a.desc.format, a.desc.args...)
    			} else {
    				check.trace(nopos, "-- delayed %p", a.f)
    			}
    		}
    		a.f() // may append to check.delayed
    		if check.conf.Trace {
    			fmt.Println()
    		}
    	}
    	assert(top <= len(check.delayed)) // stack must not have shrunk
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 19:19:55 UTC 2024
    - 23.3K bytes
    - Viewed (0)
  8. pkg/controller/bootstrap/tokencleaner.go

    	// TokenSecretNamespace string is the namespace for token Secrets.
    	TokenSecretNamespace string
    
    	// SecretResync is the time.Duration at which to fully re-list secrets.
    	// If zero, re-list will be delayed as long as possible
    	SecretResync time.Duration
    }
    
    // DefaultTokenCleanerOptions returns a set of default options for creating a
    // TokenCleaner
    func DefaultTokenCleanerOptions() TokenCleanerOptions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 6.3K bytes
    - Viewed (0)
  9. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  10. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

              public open fun toString (): kotlin.String [fake_override] declared in <root>.Intf
            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
          FUN name:run visibility:public modality:OPEN <> ($this:<root>.Generic<T of <root>.Generic>) returnType:kotlin.Unit
            overridden:
              public abstract fun run (): kotlin.Unit declared in <root>.Intf
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
Back to top