Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 959 for ONCE (0.07 sec)

  1. tensorflow/compiler/aot/tests/BUILD

            "@llvm-project//llvm:not",
        ],
    )
    
    # We disable some tfcompile tests in the open source build with the
    # "manual" tag to avoid making our OSS users build LLVM twice
    # (once for host and once for target).
    
    test_suite(
        name = "all_tests",
        tags = ["manual"],
        tests = [
            ":test_graph_tfadd_test",
            ":test_graph_tfadd_with_ckpt_saver_test",
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 27 18:00:18 UTC 2024
    - 17.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_tf_xla_call_module_to_stablehlo_pass.cc

          // TODO(b/291988976): move enforcement of this variable outside of this
          // rewrite pattern such that it's only checked once. Currently, this
          // approach results in duplicate error messages as this pattern executes
          // more than once.
          if (!IsShloMainFuncOp(main_func_op)) {
            auto error_msg =
                "'main' FuncOp in XlaCallModuleOp missing or has visibility other "
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jan 25 09:43:18 UTC 2024
    - 10.9K bytes
    - Viewed (0)
  3. platforms/core-runtime/logging/src/test/groovy/org/gradle/internal/deprecation/LoggingDeprecatedFeatureHandlerTest.groovy

            handler.init(WarningMode.All, progressBroadcaster, new DefaultProblems(Stub(ProblemEmitter)), problemStream)
        }
    
        def 'logs each deprecation warning only once'() {
            given:
            useStackTrace()
            useStackTrace()
            useStackTrace()
    
            when:
            handler.featureUsed(deprecatedFeatureUsage('feature1'))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 23 16:09:54 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/collect/Queues.java

            // multiple elements already available (e.g. LinkedBlockingQueue#drainTo locks only once)
            added += q.drainTo(buffer, numElements - added);
            if (added < numElements) { // not enough elements immediately available; will have to poll
              E e; // written exactly once, by a successful (uninterrupted) invocation of #poll
              while (true) {
                try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 16K bytes
    - Viewed (0)
  5. guava/src/com/google/common/collect/RegularImmutableMap.java

       * Constructs a new entry array where each duplicated key from the original appears only once, at
       * its first position but with its final value. The {@code duplicates} map is modified.
       *
       * @param entries the original array of entries including duplicates
       * @param n the number of valid entries in {@code entries}
       * @param newN the expected number of entries once duplicates are removed
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 28 18:11:09 UTC 2024
    - 16.2K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/wait/wait_test.go

    				}
    				t.Fatal("did not expect channel to be closed")
    			}
    		case <-time.After(ForeverTestTimeout):
    			t.Fatalf("channel did not return at least once within the poll interval")
    		}
    	}
    
    	// at most one poll notification should be sent once we return from the condition
    	done <- struct{}{}
    	go func() {
    		for i := 0; i < 2; i++ {
    			_, open := <-ch
    			if !open {
    				return
    			}
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 26 16:28:45 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  7. src/cmd/internal/moddeps/moddeps_test.go

    		})
    	})
    	if goroot.err != nil {
    		t.Fatal(goroot.err)
    	}
    	return goroot.modules
    }
    
    // goroot caches the list of modules found in the GOROOT source tree.
    var goroot struct {
    	once    sync.Once
    	modules []gorootModule
    	err     error
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 21 22:16:54 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. pkg/controller/endpointslice/endpointslice_controller.go

    	// Added as a member to the struct to allow injection for testing.
    	servicesSynced cache.InformerSynced
    
    	// podLister is able to list/get pods and is populated by the
    	// shared informer passed to NewController
    	podLister corelisters.PodLister
    	// podsSynced returns true if the pod shared informer has been synced at least once.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 08:33:32 UTC 2024
    - 23.6K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/rules/VariantAttributesRulesIntegrationTest.groovy

                                artifact classifier: 'variant1'
                            }
                        }
                    }
                }
            }
        }
    
        def "rule is applied only once"() {
            given:
            withDefaultVariantToTest()
            int invalidCount = 2
            if (GradleMetadataResolveRunner.useMaven() && !GradleMetadataResolveRunner.gradleMetadataPublished) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 19.6K bytes
    - Viewed (0)
  10. pilot/pkg/xds/eds.go

    // It replaces InstancesByPort in model - instead of iterating over all endpoints it uses
    // the hostname-keyed map. And it avoids the conversion from Endpoint to ServiceEntry to envoy
    // on each step: instead the conversion happens once, when an endpoint is first discovered.
    func (s *DiscoveryServer) EDSUpdate(shard model.ShardKey, serviceName string, namespace string,
    	istioEndpoints []*model.IstioEndpoint,
    ) {
    	inboundEDSUpdates.Increment()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 02 15:58:06 UTC 2024
    - 9.9K bytes
    - Viewed (0)
Back to top