Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 673 for impacted (0.12 sec)

  1. cmd/data-usage_test.go

    		},
    		{
    			// Gets compacted...
    			path:   "bucket/dir1",
    			size:   1302010,
    			objs:   5,
    			oSizes: sizeHistogram{0: 1, 1: 1, 2: 2, 4: 1},
    		},
    		{
    			// Gets compacted at this level...
    			path:   "bucket/dirwithalot/0",
    			size:   filesBelowT,
    			objs:   filesBelowT,
    			oSizes: sizeHistogram{0: filesBelowT},
    		},
    		{
    			// Gets compacted at this level (below obj threshold)...
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Mar 27 15:10:40 UTC 2024
    - 14.1K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/internal/build/BuildState.java

         */
        boolean isImplicitBuild();
    
        /**
         * Should this build be imported into an IDE? Some implicit builds, such as source dependency builds, are not intended to be imported into the IDE or editable by users.
         */
        boolean isImportableBuild();
    
        /**
         * Calculates the identity path for a project in this build.
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Dec 15 17:48:01 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/dependencyManagement/catalogs-javaPlatformCatalog/kotlin/consumer/settings.gradle.kts

        dependencyResolutionManagement {
            versionCatalogs {
                create("amendedLibs") {
                    from("com.mycompany:catalog:1.0")
                    // overwrite the "groovy" version declared in the imported catalog
                    version("groovy", "3.0.6")
                }
            }
        }
        // end::overwrite_version[]
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.5K bytes
    - Viewed (0)
  4. .github/PULL_REQUEST_TEMPLATE

    This PR will be imported into Gerrit with the title and first
    comment (this text) used to generate the subject and body of
    the Gerrit change.
    
    **Please ensure you adhere to every item in this list.**
    
    More info can be found at https://github.com/golang/go/wiki/CommitMessage
    
    + The PR title is formatted as follows: `net/http: frob the quux before blarfing`
      + The package name goes before the colon
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 02:07:46 UTC 2018
    - 1.2K bytes
    - Viewed (0)
  5. src/cmd/compile/internal/typecheck/iimport.go

    func SetBaseTypeIndex(t *types.Type, i, pi int64) {
    	if t.Obj() == nil {
    		base.Fatalf("SetBaseTypeIndex on non-defined type %v", t)
    	}
    	if i != -1 && pi != -1 {
    		typeSymIdx[t] = [2]int64{i, pi}
    	}
    }
    
    // Map imported type T to the index of type descriptor symbols of T and *T,
    // so we can use index to reference the symbol.
    // TODO(mdempsky): Store this information directly in the Type's Name.
    var typeSymIdx = make(map[*types.Type][2]int64)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jan 26 21:52:50 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/multiple-use-next-iteration.pbtxt

    # RUN: tf-mlir-translate -graphdef-to-mlir -tf-enable-shape-inference-on-import=false %s -o - | FileCheck %s
    
    # Verify that a NextIteration node feeding two different merge nodes is properly
    # Imported.
    
    # CHECK-LABEL: func @main()
    # CHECK:         %[[NEXTITERATION:[a-z_0-9]+]], {{.*}} = tf_executor.NextIteration.Source
    # CHECK:         tf_executor.Merge {{.*}}, %[[NEXTITERATION]]
    # CHECK:         tf_executor.Merge {{.*}}, %[[NEXTITERATION]]
    
    node {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Apr 24 00:20:25 UTC 2020
    - 2K bytes
    - Viewed (0)
  7. hack/verify-imports.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.
    
    # This script checks restricted packages are imported or not and outputs the
    # result. Target directory's path and allowed packages against checking are
    # listed in `staging/publishing/import-restrictions.yaml`.
    # Usage: `hack/verify-imports.sh`.
    
    set -o errexit
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 06:07:32 UTC 2024
    - 1.1K bytes
    - Viewed (0)
  8. platforms/native/platform-native/src/main/java/org/gradle/nativeplatform/tasks/LinkMachOBundle.java

    import org.gradle.nativeplatform.internal.DefaultLinkerSpec;
    import org.gradle.nativeplatform.internal.LinkerSpec;
    import org.gradle.work.DisableCachingByDefault;
    
    /**
     * Links a binary bundle from object files and imported libraries.
     *
     * @since 4.3
     */
    @DisableCachingByDefault(because = "Not made cacheable, yet")
    public abstract class LinkMachOBundle extends AbstractLinkTask {
        @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  9. subprojects/core/src/integTest/groovy/org/gradle/groovy/scripts/ImplicitGroovyImportsIntegrationTest.groovy

    package org.gradle.groovy.scripts
    
    import org.gradle.integtests.fixtures.AbstractIntegrationSpec
    
    class ImplicitGroovyImportsIntegrationTest extends AbstractIntegrationSpec {
    
        def "@Inject annotation can be imported by default"() {
            buildFile << """
                class Foo extends DefaultTask {
                    @Inject
                    Foo(ObjectFactory factory) {
                    }
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 13 10:03:33 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/mod_tidy_compat_implicit.txt

    
    # For this module, Go 1.16 selects the same versions of all explicit dependencies
    # as Go 1.17 does. However, Go 1.16 selects a higher version of an *implicit*
    # dependency, imported by a test of one of the (external) imported packages.
    # As a result, Go 1.16 also needs checksums for the module sources for that higher
    # version.
    #
    # The Go 1.16 module graph looks like:
    #
    # m ---- lazy v0.1.0 ---- incompatible v1.0.0
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 14:56:56 UTC 2024
    - 5.5K bytes
    - Viewed (0)
Back to top