Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 739 for Tresults (0.28 sec)

  1. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresource/strategy.go

    			}
    			results, err := sf.fieldPath.FindResults(uc)
    			if err != nil {
    				return nil, fmt.Errorf("unexpected error finding value with jsonPath: %w", err)
    			}
    			var value any
    
    			if len(results) > 0 && len(results[0]) > 0 {
    				if len(results) > 1 || len(results[0]) > 1 {
    					return nil, fmt.Errorf("unexpectedly received more than one JSON path result")
    				}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 28 21:22:34 UTC 2024
    - 14.9K bytes
    - Viewed (0)
  2. cmd/xl-storage-format-v2_test.go

    			if len(merged) == 0 && i < 2 {
    				t.Error("Did not get any results")
    				return
    			}
    			if len(merged) > 0 && i >= 2 {
    				t.Error("Got unexpected results")
    				return
    			}
    			for _, ver := range merged {
    				if ver.header.Type == invalidVersionType {
    					t.Errorf("Invalid result returned: %v", ver.header)
    				}
    			}
    		})
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri Mar 08 17:50:48 UTC 2024
    - 36.4K bytes
    - Viewed (0)
  3. platforms/ide/tooling-api/src/crossVersionTest/groovy/org/gradle/integtests/tooling/r51/ProjectConfigurationProgressEventCrossVersionSpec.groovy

            """
    
            when:
            runBuild("tasks")
    
            then:
            def result = getPluginConfigurationOperationResult(":").getPluginApplicationResults().find { it.plugin.displayName == "script.gradle" }
            result.plugin instanceof ScriptPluginIdentifier
            result.plugin.uri == scriptUri
        }
    
        def "ignores non-project plugins"() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 16 10:10:39 UTC 2024
    - 18.4K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/transform/TransformExecutionResult.java

            this.executionOutputs = executionOutputs;
        }
    
        /**
         * Transform results bound to a workspace.
         */
        public interface TransformWorkspaceResult {
            /**
             * Resolves location of the outputs of this result for a given input artifact.
             *
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Nov 22 09:41:31 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  5. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/AbstractContinuousIntegrationTest.groovy

            parseResults(out, err)
            result = results.last()
        }
    
        private OutputScrapingExecutionResult createExecutionResult(String out, String err) {
            OutputScrapingExecutionResult.from(out, err)
        }
    
        void parseResults(String out, String err) {
            if (!out) {
                results << createExecutionResult(out, err)
                return
            }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.6K bytes
    - Viewed (0)
  6. src/testing/benchmark.go

    				fmt.Fprintf(b.w, "%s--- FAIL: %s\n%s", b.chatty.prefix(), benchName, b.output)
    				continue
    			}
    			results := r.String()
    			if b.chatty != nil {
    				fmt.Fprintf(b.w, "%-*s\t", ctx.maxLen, benchName)
    			}
    			if *benchmarkMemory || b.showAllocResult {
    				results += "\t" + r.MemString()
    			}
    			fmt.Fprintln(b.w, results)
    			// Unlike with tests, we ignore the -chatty flag and always print output for
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

             llvm::zip(yield->getOperands().drop_front(1), block.getArguments())) {
          if (yield_operand != block_arg) return std::nullopt;
        }
      } else {
        // All call results should feed into expected consumer
        // All results of the call should feed into the yield.
        if (call.getNumResults() != call_consumer->getNumOperands())
          return std::nullopt;
      }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
  8. pilot/pkg/xds/sds.go

    			results = append(results, cachedItem)
    			cached++
    			continue
    		}
    		regenerated++
    		res := s.generate(sr, configClusterSecrets, proxyClusterSecrets, proxy)
    		if res != nil {
    			s.cache.Add(sr, req, res)
    			results = append(results, res)
    		}
    	}
    	return results, model.XdsLogDetails{
    		Incremental:    updatedSecrets != nil,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 15 23:04:36 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/api.go

    // language object (Object) it denotes.
    // Use Info.{Defs,Uses,Implicits} for the results of name resolution.
    //
    // Constant folding computes the exact constant value (constant.Value)
    // for every expression (syntax.Expr) that is a compile-time constant.
    // Use Info.Types[expr].Value for the results of constant folding.
    //
    // Type inference computes the type (Type) of every expression (syntax.Expr)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 13:48:53 UTC 2024
    - 17.4K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/reference/ci-systems/github-actions.adoc

    Building Gradle projects doesn't stop with the developer's machine.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 08 14:41:08 UTC 2024
    - 11.3K bytes
    - Viewed (0)
Back to top