Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 377 for serializeTo (2.21 sec)

  1. tensorflow/compiler/jit/device_compiler.h

      if (compile_state != DeviceCompileState::kCompiled) {
        return errors::FailedPrecondition(
            "Cache entry to serialize is not compiled.");
      }
      if (executable == nullptr) {
        return errors::FailedPrecondition(
            "LocalExecutable not found for cache entry to serialize.");
      }
      return absl::OkStatus();
    }
    }  // namespace device_compiler_internal
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 08:47:20 UTC 2024
    - 22.1K bytes
    - Viewed (0)
  2. platforms/core-runtime/messaging/src/main/java/org/gradle/internal/remote/internal/inet/SocketConnection.java

    import org.gradle.internal.remote.internal.RemoteConnection;
    import org.gradle.internal.serialize.FlushableEncoder;
    import org.gradle.internal.serialize.ObjectReader;
    import org.gradle.internal.serialize.ObjectWriter;
    import org.gradle.internal.serialize.StatefulSerializer;
    import org.slf4j.Logger;
    import org.slf4j.LoggerFactory;
    
    import java.io.Closeable;
    import java.io.EOFException;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 11.8K bytes
    - Viewed (0)
  3. pkg/serviceaccount/jwt.go

    	GetNode(name string) (*v1.Node, error)
    }
    
    type TokenGenerator interface {
    	// GenerateToken generates a token which will identify the given
    	// ServiceAccount. privateClaims is an interface that will be
    	// serialized into the JWT payload JSON encoding at the root level of
    	// the payload object. Public claims take precedent over private
    	// claims i.e. if both claims and privateClaims have an "exp" field,
    	// the value in claims will be used.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 27 22:16:08 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableRangeMap.java

        }
        return false;
      }
    
      @Override
      public String toString() {
        return asMapOfRanges().toString();
      }
    
      /**
       * This class is used to serialize ImmutableRangeMap instances. Serializes the {@link
       * #asMapOfRanges()} form.
       */
      private static class SerializedForm<K extends Comparable<?>, V> implements Serializable {
    
        private final ImmutableMap<Range<K>, V> mapOfRanges;
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sat May 04 14:31:50 UTC 2024
    - 14.8K bytes
    - Viewed (0)
  5. platforms/core-configuration/configuration-cache/src/main/kotlin/org/gradle/internal/cc/impl/DefaultConfigurationCache.kt

    import org.gradle.internal.cc.impl.models.IntermediateModelController
    import org.gradle.internal.cc.impl.problems.ConfigurationCacheProblems
    import org.gradle.internal.cc.base.serialize.HostServiceProvider
    import org.gradle.internal.cc.base.serialize.IsolateOwners
    import org.gradle.internal.cc.base.serialize.service
    import org.gradle.internal.cc.impl.services.ConfigurationCacheBuildTreeModelSideEffectExecutor
    import org.gradle.initialization.GradlePropertiesController
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:30 UTC 2024
    - 24.3K bytes
    - Viewed (0)
  6. internal/grid/types.go

    // call Recycle() when the object is no longer needed.
    // The recycler should handle nil pointers.
    type Recycler interface {
    	Recycle()
    }
    
    // MSS is a map[string]string that can be serialized.
    // It is not very efficient, but it is only used for easy parameter passing.
    type MSS map[string]string
    
    // Get returns the value for the given key.
    func (m *MSS) Get(key string) string {
    	if m == nil {
    		return ""
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Apr 01 23:42:09 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  7. tensorflow/c/kernels.h

    // registration fails, the given status will be populated.
    //
    // This method is the same as TF_RegisterKernelBuilder except it takes in a
    // serialized KernelDef, and uses it for registration, instead of building a new
    // one. Users can choose to not provide a serialized KernelDef and in that case
    // it's identical to TF_RegisterKernelBuilder.
    TF_CAPI_EXPORT extern void TF_RegisterKernelBuilderWithKernelDef(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jan 09 22:46:22 UTC 2024
    - 24.6K bytes
    - Viewed (0)
  8. cmd/erasure-server-pool-rebalance_gen.go

    		if err != nil {
    			err = msgp.WrapError(err)
    			return
    		}
    		(*z) = rebalSaveOpts(zb0001)
    	}
    	o = bts
    	return
    }
    
    // Msgsize returns an upper bound estimate of the number of bytes occupied by the serialized message
    func (z rebalSaveOpts) Msgsize() (s int) {
    	s = msgp.Uint8Size
    	return
    }
    
    // DecodeMsg implements msgp.Decodable
    func (z *rebalStatus) DecodeMsg(dc *msgp.Reader) (err error) {
    	{
    		var zb0001 uint8
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 26.8K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/main/java/org/gradle/launcher/daemon/client/DefaultDaemonStarter.java

    import org.gradle.internal.jvm.Jvm;
    import org.gradle.internal.jvm.inspection.JvmInstallationMetadata;
    import org.gradle.internal.os.OperatingSystem;
    import org.gradle.internal.serialize.FlushableEncoder;
    import org.gradle.internal.serialize.kryo.KryoBackedEncoder;
    import org.gradle.internal.stream.EncodedStream;
    import org.gradle.internal.time.Time;
    import org.gradle.internal.time.Timer;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 10.7K bytes
    - Viewed (0)
  10. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/TaskInputFilePropertiesIntegrationTest.groovy

                verifyAll(receivedProblem(0)) {
                    fqid == 'validation:configuration-cache-cannot-serialize-object-of-type-org-gradle-api-defaulttask-a-subtype-of-org-gradle-api-task-as-these-are-not-supported-with-the-configuration-cache'
                    contextualLabel == 'cannot serialize object of type \'org.gradle.api.DefaultTask\', a subtype of \'org.gradle.api.Task\', as these are not supported with the configuration cache.'
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 13:04:02 UTC 2024
    - 10.6K bytes
    - Viewed (0)
Back to top