Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 94 for ONCE (0.07 sec)

  1. android/guava/src/com/google/common/collect/Maps.java

             * TODO(cpovirk): Consider checking onlyOnRight.containsKey instead of right.containsKey.
             * That could change behavior if the input maps use different equivalence relations (and so
             * a key that appears once in `right` might appear multiple times in `left`). We don't
             * guarantee behavior in that case, anyway, and the current behavior is likely undesirable.
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 159.5K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/cache/LocalCache.java

      /**
       * Notifies listeners that an entry has been automatically removed due to expiration, eviction, or
       * eligibility for garbage collection. This should be called every time expireEntries or
       * evictEntry is called (once the lock is released).
       */
      void processPendingNotifications() {
        RemovalNotification<K, V> notification;
        while ((notification = removalNotificationQueue.poll()) != null) {
          try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 18 03:24:34 UTC 2024
    - 143.6K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

      exit 1
    fi
    
    if [[ ${NODE_LOCAL_SSDS:-} -ge 1 ]] && [[ -n ${NODE_LOCAL_SSDS_EXT:-} ]] ; then
      echo -e "${color_red:-}Local SSD: Only one of NODE_LOCAL_SSDS and NODE_LOCAL_SSDS_EXT can be specified at once${color_norm:-}" >&2
      exit 2
    fi
    
    if [[ "${MASTER_OS_DISTRIBUTION}" == "gci" ]]; then
        DEFAULT_GCI_PROJECT=google-containers
        if [[ "${GCI_VERSION}" == "cos"* ]] || [[ "${MASTER_IMAGE_FAMILY}" == "cos"* ]]; then
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. okhttp/src/test/java/okhttp3/URLConnectionTest.kt

        assertFailsWith<IOException> {
          getResponse(Request("http://-/foo.html".toHttpUrl()))
        }
      }
    
      // The request should work once and then fail.
      @Test
      fun getKeepAlive() {
        server.enqueue(MockResponse(body = "ABC"))
    
        // The request should work once and then fail.
        val connection1 = getResponse(newRequest("/"))
        val source1 = connection1.body.source()
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Sat Jan 20 10:30:28 UTC 2024
    - 131.7K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    			continue
    		}
    		tgtClnt := globalBucketTargetSys.GetRemoteTargetClient(bucket, tgtEntry.Arn)
    		if tgtClnt == nil {
    			// Skip stale targets if any and log them to be missing at least once.
    			replLogOnceIf(ctx, fmt.Errorf("failed to get target for bucket:%s arn:%s", bucket, tgtEntry.Arn), tgtEntry.Arn)
    			sendEvent(eventArgs{
    				EventName:  event.ObjectReplicationNotTracked,
    				BucketName: bucket,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. pkg/controller/statefulset/stateful_set_control_test.go

    		}
    		// ensure all pods are valid (have a phase)
    		for _, ord := range ordinals {
    			if pods, err = om.setPodPending(set, ord); err != nil {
    				return err
    			}
    		}
    
    		// run the controller once and check invariants
    		_, err = ssc.UpdateStatefulSet(context.TODO(), set, pods)
    		if err != nil {
    			return err
    		}
    		set, err = om.setsLister.StatefulSets(set.Namespace).Get(set.Name)
    		if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 07 19:01:47 UTC 2024
    - 108.7K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/transforms/shape_inference.cc

        return ComputeInputComponentFor(gather_op, port);
      }
      return {};
    }
    
    // TODO(jpienaar): ComputeInputsRequiredForOutput and ComputeOutputComponent are
    // intended to be switched to op interfaces once more refined.
    LogicalResult ComputeInputsRequiredForOutput(ValuePort value_port,
                                                 ComputedQueryFn has_been_computed,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jun 08 07:28:49 UTC 2024
    - 134.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

      std::optional<BufferOffset<tflite::Operator>> BuildWhileOperator(
          mlir::TFL::WhileOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
      // Build call once operator.
      BufferOffset<tflite::Operator> BuildCallOnceOperator(
          mlir::TFL::CallOnceOp op, const std::vector<int32_t>& operands,
          const std::vector<int32_t>& results);
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  9. src/cmd/trace/testdata/go122.test

    	data="/usr/local/google/home/mknyszek/work/go-1/src/net/sock_linux.go"
    String id=163
    	data="net.listenerBacklog.func1"
    String id=164
    	data="sync.(*Once).doSlow"
    String id=165
    	data="/usr/local/google/home/mknyszek/work/go-1/src/sync/once.go"
    String id=166
    	data="sync.(*Once).Do"
    String id=167
    	data="net.listenerBacklog"
    String id=168
    	data="syscall.Listen"
    String id=169
    	data="sync.(*WaitGroup).Wait"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 17:15:58 UTC 2024
    - 166K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            when:
            run "a:resolve", "b:resolve"
    
            then:
            output.count("Transforming") == 0
        }
    
        def "transform runs only once even when variant is consumed from multiple projects"() {
            given:
            createDirs("app2")
            settingsFile << """
                include 'app2'
            """
            buildFile << """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
Back to top