Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 135 for Result (0.37 sec)

  1. guava-testlib/src/com/google/common/collect/testing/google/UnmodifiableCollectionTests.java

        }
      }
    
      /**
       * Verifies that a collection is immutable.
       *
       * <p>A collection is considered immutable if:
       *
       * <ol>
       *   <li>All its mutation methods result in UnsupportedOperationException, and do not change the
       *       underlying contents.
       *   <li>All methods that return objects that can indirectly mutate the collection throw
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 10 20:31:37 UTC 2024
    - 14.7K bytes
    - Viewed (0)
  2. src/go/types/unify.go

    		if *h == nil {
    			n++
    		}
    	}
    	return n
    }
    
    // inferred returns the list of inferred types for the given type parameter list.
    // The result is never nil and has the same length as tparams; result types that
    // could not be inferred are nil. Corresponding type parameters and result types
    // have identical indices.
    func (u *unifier) inferred(tparams []*TypeParam) []Type {
    	list := make([]Type, len(tparams))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/java/org/apache/maven/internal/impl/standalone/ApiRunner.java

            public Map<String, String> getEffectiveProperties(Project project) {
                HashMap<String, String> result = new HashMap<>(getSystemProperties());
                if (project != null) {
                    result.putAll(project.getModel().getProperties());
                }
                result.putAll(getUserProperties());
                return result;
            }
    
            @Override
            public Version getMavenVersion() {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Jun 11 07:23:04 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/CrossProjectConfigurationReportingGradle.kt

        }
    
        override fun addProjectEvaluationListener(listener: ProjectEvaluationListener): ProjectEvaluationListener {
            val result = CrossProjectModelAccessProjectEvaluationListener(listener, referrerProject, crossProjectModelAccess)
            delegate.addProjectEvaluationListener(result)
            return result
        }
    
        override fun removeProjectEvaluationListener(listener: ProjectEvaluationListener) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. src/os/exec/exec.go

    	if (c.Cancel != nil || c.WaitDelay != 0) && c.ctx != nil && c.ctx.Done() != nil {
    		resultc := make(chan ctxResult)
    		c.ctxResult = resultc
    		go c.watchCtx(resultc)
    	}
    
    	return nil
    }
    
    // watchCtx watches c.ctx until it is able to send a result to resultc.
    //
    // If c.ctx is done before a result can be sent, watchCtx calls c.Cancel,
    // and/or kills cmd.Process it after c.WaitDelay has elapsed.
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 20:13:53 UTC 2024
    - 41.4K bytes
    - Viewed (0)
  6. cmd/sts-handlers.go

    			Result: ClientGrantsResult{
    				Credentials:      cred,
    				SubjectFromToken: subFromToken,
    			},
    		}
    		clientGrantsResponse.ResponseMetadata.RequestID = w.Header().Get(xhttp.AmzRequestID)
    		encodedSuccessResponse = encodeResponse(clientGrantsResponse)
    	case webIdentity:
    		webIdentityResponse := &AssumeRoleWithWebIdentityResponse{
    			Result: WebIdentityResult{
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 33.9K bytes
    - Viewed (0)
  7. pkg/config/analysis/analyzers/analyzers_test.go

    			}
    
    			// Run the analysis
    			result, err := runAnalyzer(sa)
    			if err != nil {
    				t.Fatalf("Error running analysis on testcase %s: %v", tc.name, err)
    			}
    
    			g.Expect(extractFields(result.Messages)).To(ConsistOf(tc.expected), "%v", prettyPrintMessages(result.Messages))
    		})
    	}
    
    	// Verify that the collections actually accessed during testing actually match
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 07:22:31 UTC 2024
    - 42.6K bytes
    - Viewed (0)
  8. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/isolated/IsolatedProjectsFixture.groovy

            def result = []
            for (path in projects) {
                def baseName = path == ':' ? "build" : (path.drop(1).replace(':', '/') + "/build")
                if (spec.file("${baseName}.gradle").isFile() || spec.file("${baseName}.gradle.kts").isFile()) {
                    result.add(path)
                }
            }
            return result
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  9. src/cmd/compile/internal/types2/unify.go

    		if *h == nil {
    			n++
    		}
    	}
    	return n
    }
    
    // inferred returns the list of inferred types for the given type parameter list.
    // The result is never nil and has the same length as tparams; result types that
    // could not be inferred are nil. Corresponding type parameters and result types
    // have identical indices.
    func (u *unifier) inferred(tparams []*TypeParam) []Type {
    	list := make([]Type, len(tparams))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:24:39 UTC 2024
    - 27.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      TF_RET_CHECK(program_shape_or_status.ok());
    
      xla::ProgramShape& program_shape = program_shape_or_status.value();
      if (!program_shape.result().IsTuple())
        return errors::Internal("Expect result to have tuple shape");
    
      xla::HloInputOutputAliasConfig config(program_shape.result());
      for (auto alias : output_to_input_alias) {
        if (use_tuple_args) {
          TF_RETURN_IF_ERROR(config.SetUpAlias(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
Back to top