Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 592 for completely (0.2 sec)

  1. platforms/core-configuration/input-tracking/src/main/java/org/gradle/internal/configuration/inputs/AccessTrackingProperties.java

             * <p>
             * When this method is called because of the modifying operation, the state of the observed Properties object is undefined for the duration of the
             * call: it may be already completely or partially modified to reflect the result of the operation.
             *
             * @param key the key used by the caller to access the property
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 07:32:51 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. pkg/controller/job/success_policy_test.go

    				}},
    			},
    			wantMetSuccessPolicy: true,
    			wantMessage:          "Matched rules at index 0",
    		},
    		"rules.succeededIndexes is specified; succeededIndexes didn't match rules; rules completely overlaps succeededIndexes": {
    			enableJobSuccessPolicy: true,
    			completions:            10,
    			succeededIndexes:       orderedIntervals{{1, 3}, {7, 8}},
    			successPolicy: &batch.SuccessPolicy{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  3. guava/src/com/google/common/math/Stats.java

        accumulator.addAll(values);
        return accumulator.snapshot();
      }
    
      /**
       * Returns statistics over a dataset containing the given values. The iterator will be completely
       * consumed by this method.
       *
       * @param values a series of values, which will be converted to {@code double} values (this may
       *     cause loss of precision)
       */
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 15 16:12:13 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  4. platforms/documentation/docs/src/docs/userguide/dep-man/03-controlling-transitive-dependencies/resolution_rules.adoc

    ====
    
    == Excluding a dependency from a configuration completely
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 17 00:09:06 UTC 2024
    - 30.1K bytes
    - Viewed (0)
  5. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirImportOptimizer.kt

        }
    
    /**
     * Referenced callable symbol, even if it not completely correctly resolved.
     */
    private val FirQualifiedAccessExpression.referencedCallableSymbol: FirCallableSymbol<*>?
        get() {
            return toResolvedCallableSymbol()
        }
    
    /**
     * Referenced [ClassId], even if it is not completely correctly resolved.
     */
    private val FirResolvedTypeRef.resolvedClassId: ClassId?
        get() {
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Fri Jun 07 16:54:07 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/problems/ConfigurationCacheReport.kt

                        logger.warn(
                            "Configuration cache report is taking too long to write... "
                                + "The build might finish before the report has been completely written."
                        )
                        logger.info("Unfinished tasks: {}", unfinishedTasks)
                    }
                }
    
                private
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  7. platforms/jvm/toolchains-jvm-shared/src/test/groovy/org/gradle/jvm/toolchain/internal/install/DefaultJdkCacheDirectoryTest.groovy

            then:
            installedJdk.exists()
            new File(installedJdk, "jdk-with-symlinks.2/bin/file").exists()
    
            //TODO: completely wrong; the uncompressed archive should look like this:
            // .
            // ├── bin -> zulu-11.jdk/Contents/Home/bin
            // ├── file
            // └── zulu-11.jdk
            //     └── Contents
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 09 06:41:24 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  8. src/go/internal/gcimporter/iimport.go

    	}
    
    	// SetConstraint can't be called if the constraint type is not yet complete.
    	// When type params are created in the 'P' case of (*importReader).obj(),
    	// the associated constraint type may not be complete due to recursion.
    	// Therefore, we defer calling SetConstraint there, and call it here instead
    	// after all types are complete.
    	for _, d := range p.later {
    		d.t.SetConstraint(d.constraint)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  9. src/cmd/go/internal/modfetch/cache.go

    // An error satisfying errors.Is(err, fs.ErrNotExist) will be returned
    // along with the directory if the directory does not exist or if the directory
    // is not completely populated.
    func DownloadDir(ctx context.Context, m module.Version) (string, error) {
    	if gover.IsToolchain(m.Path) {
    		return "", ErrToolchain
    	}
    	if err := checkCacheDir(ctx); err != nil {
    		return "", err
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 03 18:15:22 UTC 2024
    - 24.7K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/DependencyVerifyingModuleComponentRepository.java

                        return ((DefaultModuleComponentArtifactIdentifier) artifactIdentifier).getName();
                    }
                    // This is a bit hackish but the mapping from file names to ivy artifact names is completely broken
                    String fileName = artifactIdentifier.getFileName().replace("-" + artifactIdentifier.getComponentIdentifier().getVersion(), "");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 17:38:42 UTC 2024
    - 16K bytes
    - Viewed (0)
Back to top