Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 101 for fnest (0.23 sec)

  1. guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

       */
      public void testEmptyServiceManager() {
        Logger logger = Logger.getLogger(ServiceManager.class.getName());
        logger.setLevel(Level.FINEST);
        TestLogHandler logHandler = new TestLogHandler();
        logger.addHandler(logHandler);
        ServiceManager manager = new ServiceManager(Arrays.<Service>asList());
        RecordingListener listener = new RecordingListener();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.9K bytes
    - Viewed (0)
  2. tensorflow/cc/experimental/libtf/function.cc

              return false;
            }
          }
        } break;
        default:
          return false;
      }
      return true;
    }
    
    // TODO(b/190203981): Move to a separate nest-like library.
    void Flatten(const TaggedValue& value,
                 std::vector<AbstractTensorHandle*>* flat_args) {
      if (value.type() == TaggedValue::Type::TENSOR) {
        flat_args->emplace_back(value.tensor().get());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Mar 04 19:49:06 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/tasks/DefaultTaskDependencyTest.groovy

            then:
            UnsupportedOperationException e3 = thrown()
            e3.message == 'Removing a task dependency from a task instance is not supported.'
        }
    
        def "can nest iterables and maps and closures and callables"() {
            Map nestedMap = [task: otherTask]
            Iterable nestedCollection = [nestedMap]
            Callable nestedCallable = { nestedCollection } as Callable
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 9.4K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/util/concurrent/ServiceManagerTest.java

       */
      public void testEmptyServiceManager() {
        Logger logger = Logger.getLogger(ServiceManager.class.getName());
        logger.setLevel(Level.FINEST);
        TestLogHandler logHandler = new TestLogHandler();
        logger.addHandler(logHandler);
        ServiceManager manager = new ServiceManager(Arrays.<Service>asList());
        RecordingListener listener = new RecordingListener();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 02 17:20:27 UTC 2023
    - 23.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tfr/integration/tfr_decompose_ctx.cc

    }
    
    // Constructor of the decompose context.
    TFRDecomposeContext::TFRDecomposeContext(mlir::ModuleOp tfr_module)
        : tfr_module_(tfr_module), pm_(tfr_module_.getContext()) {
      mlir::OpPassManager& func_pm = pm_.nest<mlir::func::FuncOp>();
    
      // Prepare the imported graph.
      func_pm.addPass(mlir::CreateExecutorDialectToFunctionalConversionPass());
    
      // Run TFR lowering, inlining and raising to tf.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 29 02:34:43 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  6. src/cmd/vendor/github.com/google/pprof/internal/measurement/measurement.go

    			p.SampleType[i].Unit = sampleType[i].Unit
    		}
    		if err := p.ScaleN(ratios); err != nil {
    			return fmt.Errorf("scale: %v", err)
    		}
    	}
    	return nil
    }
    
    // CommonValueType returns the finest type from a set of compatible
    // types.
    func CommonValueType(ts []*profile.ValueType) (*profile.ValueType, error) {
    	if len(ts) <= 1 {
    		return nil, nil
    	}
    	minType := ts[0]
    	for _, t := range ts[1:] {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 8.8K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/_gen/RISCV64.rules

    // Remove redundant NEG from BEQZ/BNEZ.
    (BEQZ (NEG x) yes no) => (BEQZ x yes no)
    (BNEZ (NEG x) yes no) => (BNEZ x yes no)
    
    // Negate comparison with FNES/FNED.
    (BEQZ (FNES <t> x y) yes no) => (BNEZ (FEQS <t> x y) yes no)
    (BNEZ (FNES <t> x y) yes no) => (BEQZ (FEQS <t> x y) yes no)
    (BEQZ (FNED <t> x y) yes no) => (BNEZ (FEQD <t> x y) yes no)
    (BNEZ (FNED <t> x y) yes no) => (BEQZ (FEQD <t> x y) yes no)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Mar 07 14:57:07 UTC 2024
    - 40.3K bytes
    - Viewed (0)
  8. platforms/core-runtime/base-services/src/test/groovy/org/gradle/internal/resources/DefaultResourceLockCoordinationServiceTest.groovy

                lock1.lockedState = false
                blockingThread.interrupt()
    
                thread.blockUntil.executed2
            }
    
            then:
            lock1.lockedState
        }
    
        def "can nest multiple calls to withStateLock"() {
            def lock = [
                resourceLock("lock1"),
                resourceLock("lock2"),
                resourceLock("lock3"),
                resourceLock("lock4")
            ]
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 11 17:16:10 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. subprojects/core/src/test/groovy/org/gradle/api/internal/AbstractNamedDomainObjectContainerTest.groovy

                element {
                    prop = nested
                }
            }
    
            then:
            missingProp = thrown()
            missingProp.property == 'nested'
        }
    
        def "can nest containers"() {
            when:
            container.configure {
                someObj {
                    children {
                        child1 {
                            prop = 'child1'
                        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 27 06:24:30 UTC 2018
    - 11.4K bytes
    - Viewed (0)
  10. internal/s3select/sql/analysis.go

    // s.Salary"). Analysis determines if such a scenario exists so an
    // error can be returned.
    
    var (
    	// Fatal error for query processing.
    	errNestedAggregation      = errors.New("Cannot nest aggregations")
    	errFunctionNotImplemented = errors.New("Function is not yet implemented")
    	errUnexpectedInvalidNode  = errors.New("Unexpected node value")
    	errInvalidKeypath         = errors.New("A provided keypath is invalid")
    )
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 8.5K bytes
    - Viewed (0)
Back to top