Search Options

Results per page
Sort
Preferred Languages
Advance

Results 111 - 120 of 307 for Result (0.12 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheValueSourceIntegrationTest.groovy

                }
    
                println("ValueSource result = \${vsResult.get()}")
            """
    
            when:
            configurationCacheRun("-Dsome.property=1", "-Dmy.property=value")
    
            then:
            configurationCache.assertStateStored()
            outputContains("result = value1")
            problems.assertResultHasProblems(result) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 20.6K bytes
    - Viewed (0)
  2. cmd/batch-expire.go

    		versionsCount int
    		toDel         []expireObjInfo
    	)
    	failed := true
    	for result := range results {
    		if result.Err != nil {
    			failed = true
    			batchLogIf(ctx, result.Err)
    			continue
    		}
    
    		// Apply filter to find the matching rule to apply expiry
    		// actions accordingly.
    		// nolint:gocritic
    		if result.Item.IsLatest {
    			// send down filtered entries to be deleted using
    			// DeleteObjects method
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 13:50:53 UTC 2024
    - 21.1K bytes
    - Viewed (0)
  3. buildscripts/checkdeps.sh

    		TARGET_FILE=$(basename $TARGET_FILE)
    	done
    
    	# Compute the canonicalized name by finding the physical path
    	# for the directory we're in and appending the target file.
    	PHYS_DIR=$(pwd -P)
    	RESULT=$PHYS_DIR/$TARGET_FILE
    	echo $RESULT
    }
    
    ## FIXME:
    ## In OSX, 'sort -V' option does not exist, hence
    ## we have our own version compare function.
    ## Once OSX has the option, below function is good enough.
    ##
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 05:08:11 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		return nil, false
    	}
    
    	result := make([]string, 0, 2)
    	result = append(result, c.indexedTrigger.indexerFunc(baseObjectThreadUnsafe(event.Object)))
    	if event.PrevObject == nil {
    		return result, true
    	}
    	prevTriggerValue := c.indexedTrigger.indexerFunc(baseObjectThreadUnsafe(event.PrevObject))
    	if result[0] != prevTriggerValue {
    		result = append(result, prevTriggerValue)
    	}
    	return result, true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. api/maven-api-core/src/main/java/org/apache/maven/api/services/DependencyResolverRequest.java

                this.pathScope = pathScope;
                return this;
            }
    
            /**
             * Filters the types of paths to include in the result.
             * The result will contain only the paths of types for which the predicate returned {@code true}.
             * It is recommended to apply a filter for retaining only the types of paths of interest,
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/inputs/undeclared/FilesInTransformIntegrationTest.groovy

                }
            """)
    
            when:
            configurationCacheRun(":$task")
    
            then:
            outputContains("INPUT FILE CONTENT")
            problems.assertResultHasProblems(result) {
                withNoInputs()
            }
    
            where:
            task << ["resolveCollection", "resolveProviders"]
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  7. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheDevelocityPluginIntegrationTest.groovy

            when:
            configurationCacheRun 'jar', '--scan', '-Dscan.dump'
    
            then:
            configurationCache.assertStateStored()
            problems.assertResultHasProblems(result) {
                // TODO:configuration-cache check problem details
                withTotalProblemsCount(1)
            }
            postBuildOutputContains 'Build scan written to'
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheFlowScopeIntegrationTest.groovy

        def '#target #injectionStyle with #parameter can react to build work result'() {
            given:
            def configCache = newConfigurationCacheFixture()
    
            and:
            withLavaLampPluginFor target, parameter, injectionStyle
    
            when: 'task runs successfully'
            configurationCacheRun 'help'
    
            then: 'flow action reacts to build result'
            configCache.assertStateStored(true)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. maven-api-impl/src/main/java/org/apache/maven/internal/impl/DefaultDependencyResolverResult.java

                }
            }
        }
    
        /**
         * Adds a dependency node to the result.
         *
         * @param node the dependency node
         */
        void addNode(Node node) {
            nodes.add(node);
        }
    
        /**
         * Adds a dependency to the result. This method populates the {@link #nodes}, {@link #paths},
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 14.6K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/fixtures/ToolingApiSpec.groovy

                        }
                    }
                }
            """
        }
    
        def <T> T fetchModel(Class<T> type = SomeToolingModel.class, String... tasks = null) {
            def model = null
            result = toolingApiExecutor.runBuildWithToolingConnection { connection ->
                def output = new ByteArrayOutputStream()
                def error = new ByteArrayOutputStream()
                def args = executer.allArgs
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 15.1K bytes
    - Viewed (0)
Back to top