Search Options

Results per page
Sort
Preferred Languages
Advance

Results 251 - 260 of 1,131 for Constraint (0.16 sec)

  1. staging/src/k8s.io/apiserver/pkg/storage/interfaces.go

    	// ResourceVersion provides a resource version constraint to apply to the list operation
    	// as a "not older than" constraint: the result contains data at least as new as the provided
    	// ResourceVersion. The newest available data is preferred, but any data not older than this
    	// ResourceVersion may be served.
    	ResourceVersion string
    	// ResourceVersionMatch provides the rule for how the resource version constraint applies. If set
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 29 07:53:48 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  2. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/resolveengine/graph/builder/NodeState.java

        /*
         * When a node exits the graph, its constraints need to be cleaned up.
         * This means:
         * * Rescheduling any deferred selection impacted by a constraint coming from this node
         * * Making sure we no longer are registered as pending interest on nodes pointed by constraints
         */
        private void cleanupConstraints() {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jun 07 14:19:34 UTC 2024
    - 58.9K bytes
    - Viewed (0)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/dsl/dependencies/DefaultDependencyConstraintHandler.java

        private final static DependencyConstraint DUMMY_CONSTRAINT = new DependencyConstraint() {
            private InvalidUserCodeException shouldNotBeCalled() {
                return new InvalidUserCodeException("You shouldn't use a dependency constraint created via a Provider directly");
            }
    
            @Override
            public void version(Action<? super MutableVersionConstraint> configureAction) {
                throw shouldNotBeCalled();
            }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Feb 22 00:10:09 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/test/groovy/org/gradle/internal/component/external/model/DependencyConstraintMetadataRulesTest.groovy

                assert it[0].name == "optional"
            }))
    
            then:
            def dependencies = selectTargetConfigurationMetadata(mavenMetadata).dependencies
            dependencies.size() == 1
            !dependencies[0].constraint
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.1K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/tf_device_ops_invalid.mlir

    // Check that an empty replicate is invalid (replicate needs a region).
    func.func @verifier_replicate_no_block() {
      "tf_device.replicate" () ({
    // expected-error@-1 {{'tf_device.replicate' op region #0 ('body') failed to verify constraint: region with 1 blocks}}
      }) {n = 2 : i32, operandSegmentSizes = array<i32: 0, 0>} : () -> ()
      func.return
    }
    
    // -----
    
    // Check that an empty replicate block is invalid.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 9.8K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			}
    			st.advance(1)
    			ret = &BitIntType{Size: size, Signed: signed}
    
    		case 'k':
    			constraint, _ := st.name()
    			ret = &SuffixType{
    				Base:   constraint,
    				Suffix: "auto",
    			}
    
    		case 'K':
    			constraint, _ := st.name()
    			ret = &SuffixType{
    				Base:   constraint,
    				Suffix: "decltype(auto)",
    			}
    
    		default:
    			st.fail("unrecognized D code in type")
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  7. test/typeparam/issue50690a.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    package main
    
    import (
    	"fmt"
    )
    
    // Numeric expresses a type constraint satisfied by any numeric type.
    type Numeric interface {
    	~uint | ~uint8 | ~uint16 | ~uint32 | ~uint64 |
    		~int | ~int8 | ~int16 | ~int32 | ~int64 |
    		~float32 | ~float64 |
    		~complex64 | ~complex128
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Mar 09 21:26:42 UTC 2022
    - 1.6K bytes
    - Viewed (0)
  8. src/net/conn_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // This file implements API tests across platforms and should never have a build
    // constraint.
    
    package net
    
    import (
    	"testing"
    	"time"
    )
    
    // someTimeout is used just to test that net.Conn implementations
    // don't explode when their SetFooDeadline methods are called.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. subprojects/core-api/src/main/java/org/gradle/api/services/BuildServiceSpec.java

         *
         * <p>
         * IMPORTANT: the build service must be explicitly registered with every using task via {@link org.gradle.api.Task#usesService(Provider) Task#usesService}
         * for this constraint to be honored.
         * </p>
         *
         * @see org.gradle.api.Task#usesService(Provider)
         */
        Property<Integer> getMaxParallelUsages();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 23 18:14:53 UTC 2021
    - 1.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/lite/transforms/optimize_batch_matmul.td

    include "mlir/Dialect/Func/IR/FuncOps.td"
    include "tensorflow/compiler/mlir/lite/ir/tfl_ops.td"
    include "tensorflow/compiler/mlir/lite/utils/utils.td"
    include "tensorflow/compiler/mlir/tensorflow/ir/tf_ops.td"
    
    def NotFromDequant : Constraint<CPred<"NotFromDequant($0)">>;
    
    // Fuses TFL_FullyConnectedOp and TFL_TransposeOp Rhs to TFL_BatchMatMulOp when
    // it's used by TFL_BatchMatMulOp and "transpose_lhs" is true.
    def FuseTransposeFCLhsToBatchMatmul : Pat<
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Oct 09 23:44:09 UTC 2023
    - 2.6K bytes
    - Viewed (0)
Back to top