Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 173 for subTable (0.12 sec)

  1. guava/src/com/google/common/escape/Escapers.java

       * points. In these cases it is necessary to extend either {@link ArrayBasedCharEscaper} or {@link
       * ArrayBasedUnicodeEscaper} to provide the desired behavior. However this builder is suitable for
       * creating escapers that replace a relative small set of characters.
       *
       * @author David Beaumont
       * @since 15.0
       */
      public static final class Builder {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Apr 26 20:07:17 UTC 2023
    - 10.5K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/storage/v1beta1/types.go

    // a certain combination:
    // - no object exists with suitable topology and storage class name
    // - such an object exists, but the capacity is unset
    // - such an object exists, but the capacity is zero
    //
    // The producer of these objects can decide which approach is more suitable.
    //
    // They are consumed by the kube-scheduler when a CSI driver opts into
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:32 UTC 2023
    - 33.1K bytes
    - Viewed (0)
  3. pilot/pkg/xds/debug.go

    	if proxyID != "" && con == nil {
    		// We can't guarantee the Pilot we are connected to has a connection to the proxy we requested
    		// There isn't a great way around this, but for debugging purposes its suitable to have the caller retry.
    		w.WriteHeader(http.StatusNotFound)
    		_, _ = w.Write([]byte("Proxy not connected to this Pilot instance. It may be connected to another instance.\n"))
    		return
    	}
    	if con == nil {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 00:26:45 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/http/NtlmHttpFilter.java

                this.dcListExpiration = 0;
            }
            while ( retry-- > 0 );
    
            this.dcListExpiration = now + 1000 * 60 * 15; /* 15 min */
            throw new UnknownHostException("Failed to negotiate with a suitable domain controller for " + domain);
        }
    
    
        private static NtlmChallenge interrogate ( CIFSContext tf, Address addr ) throws SmbException {
            UniAddress dc = new UniAddress(addr);
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 14.8K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_launch_util.h

        xla::PjRtDevice* device, xla::PjRtClient* pjrt_client,
        xla::PjRtLoadedExecutable* executable);
    
    // Helper class to perform the marshalling of TensorFlow inputs and outputs to
    // ShapedBuffers suitable for passing to an XLA computation.
    class XlaComputationLaunchContext {
     public:
      // Create a new launch context. 'allocate_xla_tensors' is true if allocated
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/tf2xla/api/v1/compile_tf_graph.cc

      }
      *module_proto->mutable_input_output_alias() = config.ToProto();
      return absl::OkStatus();
    }
    
    bool failed(const absl::Status& status) { return !status.ok(); }
    
    // Transforms the given module to be suitable for export to TensorFlow GraphDef
    // and then exports all functions to the given library.
    Status PrepareAndExportToLibrary(mlir::ModuleOp module,
                                     FunctionLibraryDefinition* flib_def) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 22:19:26 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/cache/Striped64.java

          busyOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("busy"));
        } catch (Exception e) {
          throw new Error(e);
        }
      }
    
      /**
       * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package. Replace with a simple call
       * to Unsafe.getUnsafe when integrating into a jdk.
       *
       * @return a sun.misc.Unsafe
       */
      private static sun.misc.Unsafe getUnsafe() {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  8. guava/src/com/google/common/cache/Striped64.java

          busyOffset = UNSAFE.objectFieldOffset(sk.getDeclaredField("busy"));
        } catch (Exception e) {
          throw new Error(e);
        }
      }
    
      /**
       * Returns a sun.misc.Unsafe. Suitable for use in a 3rd party package. Replace with a simple call
       * to Unsafe.getUnsafe when integrating into a jdk.
       *
       * @return a sun.misc.Unsafe
       */
      private static sun.misc.Unsafe getUnsafe() {
        try {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Jun 07 22:25:23 UTC 2024
    - 11.5K bytes
    - Viewed (0)
  9. src/testing/quick/quick.go

    			return &CheckEqualError{CheckError{i + 1, toInterfaces(arguments)}, xOut, yOut}
    		}
    	}
    
    	return nil
    }
    
    // arbitraryValues writes Values to args such that args contains Values
    // suitable for calling f.
    func arbitraryValues(args []reflect.Value, f reflect.Type, config *Config, rand *rand.Rand) (err error) {
    	if config.Values != nil {
    		config.Values(args, rand)
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 08 17:55:47 UTC 2023
    - 10.1K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/convert_control_to_data_outputs.cc

      // For each op in the graph, get the resources it uses and update the access
      // information for them.
      graph_op.walk([&](IslandOp island) {
        // This pass assumes that all functions are suitable for export i.e., each
        // function has a single tf_executor.graph op and all islands wrap the
        // internal op perfectly. Hence this assertion should never fail.
        assert(island.WrapsSingleOp());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top