Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 96 for reasons (0.36 sec)

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

             * guarantee behavior in that case, anyway, and the current behavior is likely undesirable.
             * So that's either a reason to feel free to change it or a reason to not bother thinking
             * further about this.
             */
            V rightValue = uncheckedCastNullableTToT(onlyOnRight.remove(leftKey));
    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. guava/src/com/google/common/collect/Maps.java

             * guarantee behavior in that case, anyway, and the current behavior is likely undesirable.
             * So that's either a reason to feel free to change it or a reason to not bother thinking
             * further about this.
             */
            V rightValue = uncheckedCastNullableTToT(onlyOnRight.remove(leftKey));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 24 19:38:27 UTC 2024
    - 165.9K bytes
    - Viewed (0)
  3. guava/src/com/google/common/util/concurrent/ClosingFuture.java

      }
    
      /**
       * Attempts to cancel execution of this step. This attempt will fail if the step has already
       * completed, has already been cancelled, or could not be cancelled for some other reason. If
       * successful, and this step has not started when {@code cancel} is called, this step should never
       * run.
       *
       * <p>If successful, causes the objects captured by this step (if already started) and its input
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 98.7K bytes
    - Viewed (0)
  4. android/guava/src/com/google/common/util/concurrent/ClosingFuture.java

      }
    
      /**
       * Attempts to cancel execution of this step. This attempt will fail if the step has already
       * completed, has already been cancelled, or could not be cancelled for some other reason. If
       * successful, and this step has not started when {@code cancel} is called, this step should never
       * run.
       *
       * <p>If successful, causes the objects captured by this step (if already started) and its input
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue May 07 12:37:15 UTC 2024
    - 98.3K bytes
    - Viewed (0)
  5. src/net/http/transport_test.go

    			// defer afterTest at top runs), but not before the
    			// len(addrSeen) check at the bottom of this test,
    			// since Closing this early in the loop would risk
    			// making connections be re-used for the wrong reason.
    			defer res.Body.Close()
    
    			if res.ContentLength != int64(wantLen) {
    				t.Errorf("%s res.ContentLength = %d; want %d", path, res.ContentLength, wantLen)
    			}
    			got, err := io.ReadAll(res.Body)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tensorflow/tests/extract_outside_compilation.mlir

          tf_device.return %2 : tensor<2xi32>
        }
    
        func.return %1 : tensor<2xi32>
      }
    
      // Tests extraction of an outside compiled cluster that contains ops wrapped
      // inside multiple regions of nested tf.IfRegion and tf.WhileRegion.
    
      // CHECK-LABEL: func @outside_compiled_ops_with_multiple_region_single_cluster
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Oct 31 08:59:10 UTC 2023
    - 129.6K bytes
    - Viewed (0)
  7. cmd/server_test.go

    	c.Assert(err, nil)
    	// execute the HTTP request.
    	response3, err := s.client.Do(request)
    	c.Assert(err, nil)
    	c.Assert(response3.StatusCode, http.StatusOK)
    
    	// The reason to duplicate this structure here is to verify if the
    	// unmarshalling works from a client perspective, specifically
    	// while unmarshalling time.Time type for 'Initiated' field.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 115.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

          return BuildIfOperator(ifOp, operands, results);
        }
    
        CustomOptionsOffset custom_options;
    
        // Ops in TF dialect can either be custom ops or flex ops.
        // The reason we go directly from TensorFlow dialect MLIR to tensorflow
        // node instead of going to TF table gen'd ops via generated code is that
        // we do not want to restrict custom and flex op conversion support to
    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. cluster/gce/gci/configure-helper.sh

      log-trap-pop
    }
    
    # Writes a log proto to stdout.
    # Args:
    #   $1: bootstrap step name.
    #   $2: status. Either 'STARTED', 'COMPLETED', or 'ERROR'.
    #   $3: optional status reason.
    #
    # NOTE: this function is duplicated in configure.sh, any changes here should be
    # duplicated there as well.
    function log-proto {
      local bootstep="$1"
      local status="$2"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 10 22:07:47 UTC 2024
    - 141.1K bytes
    - Viewed (0)
  10. src/reflect/value.go

    	if dummy.b {
    		escapes(*(*any)(x)) // the dereference may not always be safe, but never executed
    	}
    }
    
    // This is just a wrapper around abi.NoEscape. The inlining heuristics are
    // finnicky and for whatever reason treat the local call to noescape as much
    // lower cost with respect to the inliner budget. (That is, replacing calls to
    // noescape with abi.NoEscape will cause inlining tests to fail.)
    //
    //go:nosplit
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 119.9K bytes
    - Viewed (0)
Back to top