Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 246 for seves (0.06 sec)

  1. src/cmd/go/internal/vcweb/vcweb.go

    	"time"
    )
    
    // A Server serves cached, dynamically-generated version control repositories.
    type Server struct {
    	env    []string
    	logger *log.Logger
    
    	scriptDir string
    	workDir   string
    	homeDir   string // $workdir/home
    	engine    *script.Engine
    
    	scriptCache sync.Map // script path → *scriptResult
    
    	vcsHandlers map[string]vcsHandler
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 12.1K bytes
    - Viewed (0)
  2. src/net/rpc/server.go

    	DefaultServer.ServeCodec(codec)
    }
    
    // ServeRequest is like [ServeCodec] but synchronously serves a single request.
    // It does not close the codec upon completion.
    func ServeRequest(codec ServerCodec) error {
    	return DefaultServer.ServeRequest(codec)
    }
    
    // Accept accepts connections on the listener and serves requests
    // to [DefaultServer] for each incoming connection.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 10 03:29:50 UTC 2024
    - 21.6K bytes
    - Viewed (0)
  3. android/guava-tests/test/com/google/common/cache/CacheExpirationTest.java

        ticker.advance(1, MILLISECONDS);
        assertThat(keySet).containsExactly(3, 4, 5, 6, 7, 8, 9, 0);
    
        // asMap.put saves 3
        cache.asMap().put(3, -3);
        ticker.advance(1, MILLISECONDS);
        assertThat(keySet).containsExactly(4, 5, 6, 7, 8, 9, 0, 3);
    
        // asMap.replace saves 4
        cache.asMap().replace(4, -4);
        ticker.advance(1, MILLISECONDS);
        assertThat(keySet).containsExactly(5, 6, 7, 8, 9, 0, 3, 4);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Aug 05 17:21:46 UTC 2022
    - 18.7K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/quantization/tensorflow/python/representative_dataset.py

    _RepresentativeDatasetFile = quantization_options_pb2.RepresentativeDatasetFile
    
    
    class RepresentativeDatasetSaver:
      """Representative dataset saver.
    
      Exposes a single method `save` that saves the provided representative dataset
      into files.
    
      This is useful when you would like to keep a snapshot of your representative
      dataset at a file system or when you need to pass the representative dataset
      as files.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Mar 22 22:55:22 UTC 2024
    - 14.2K bytes
    - Viewed (0)
  5. tensorflow/compiler/jit/xla_cluster_util_test.cc

    }
    
    void AddRegularFunctionFunctionDef(FunctionDefLibrary* fdef_lib) {
      Tensor seven(DT_FLOAT, {});
      seven.scalar<float>()() = 7;
      FunctionDef make_regular_float = FunctionDefHelper::Define(
          "RegularFloatFn", {}, {"r:float"}, {},
          {{{"r"}, "Const", {}, {{"dtype", DT_FLOAT}, {"value", seven}}}});
      *fdef_lib->add_function() = make_regular_float;
    }
    
    TEST(NodesRelatedToRefVariables, Basic) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 09:53:30 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiextensions-apiserver/test/integration/defaulting_test.go

    	t.Logf("Add 'c' default to the storage version and wait until GET sees it in both status and spec")
    	addDefault("v1beta2", "c", "C")
    
    	t.Logf("wait until GET sees 'c' in both status and spec")
    	if err := wait.PollImmediate(100*time.Millisecond, wait.ForeverTestTimeout, func() (bool, error) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 06 05:32:34 UTC 2023
    - 21.2K bytes
    - Viewed (0)
  7. okhttp/src/test/java/okhttp3/internal/tls/CertificatePinnerChainValidationTest.kt

        // "intermediate_ca" as the good CA. This signs a rogue certificate for localhost. The server
        // serves the good CAs certificate in the chain, which means the certificate pinner sees a
        // different set of certificates than the SSL verifier.
        val compromisedIntermediateCa =
          HeldCertificate.Builder()
            .signedBy(compromisedRootCa)
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 23.8K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/quantization/tensorflow/python/save_model.py

        checkpoint_dir: Optional[str] = None,
        function_aliases: Optional[Mapping[str, str]] = None,
        asset_file_defs: Sequence[meta_graph_pb2.AssetFileDef] = (),
    ) -> None:
      """Saves the model.
    
      Saves the provided graph def as SavedModel.
      Uses TF1 SavedModel semantics (i.e. no object graph).
    
      Args:
        graph_def: Graph to save.
        output_dir: Output directory for the SavedModel.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 01:09:50 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  9. src/runtime/cgocall.go

    //
    // runtime.cgocallback (in asm_$GOARCH.s) switches from m.g0's stack
    // to the original g (m.curg)'s stack, on which it calls
    // runtime.cgocallbackg(_cgoexp_GoF, frame, ctxt). As part of the
    // stack switch, runtime.cgocallback saves the current SP as
    // m.g0.sched.sp, so that any use of m.g0's stack during the execution
    // of the callback will be done below the existing stack frames.
    // Before overwriting m.g0.sched.sp, it pushes the old value on the
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:16:47 UTC 2024
    - 24.2K bytes
    - Viewed (0)
  10. src/net/http/pprof/pprof.go

    // Copyright 2010 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Package pprof serves via its HTTP server runtime profiling data
    // in the format expected by the pprof visualization tool.
    //
    // The package is typically only imported for the side effect of
    // registering its HTTP handlers.
    // The handled paths all begin with /debug/pprof/.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 27 17:34:05 UTC 2024
    - 14.1K bytes
    - Viewed (0)
Back to top