Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 140 for startm (0.14 sec)

  1. tensorflow/compiler/mlir/lite/flatbuffer_export.cc

            if (attr.list().s_size() > 0) {
              auto start = flex_builder->StartVector(key);
              for (const std::string& v : attr.list().s()) {
                flex_builder->Add(v);
              }
              flex_builder->EndVector(start, /*typed=*/true, /*fixed=*/false);
            } else if (attr.list().i_size() > 0) {
              auto start = flex_builder->StartVector(key);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:41:49 UTC 2024
    - 164.5K bytes
    - Viewed (0)
  2. src/crypto/x509/verify_test.go

    		roots:         []string{startComRoot},
    		currentTime:   1302726541,
    
    		// The StartCom root is not trusted by Windows when the default
    		// ServerAuth EKU is requested.
    		systemSkip: true,
    
    		expectedChains: [][]string{
    			{"dnssec-exp", "StartCom Class 1", "StartCom Certification Authority"},
    		},
    	},
    	{
    		name:          "dnssec-exp/AnyEKU",
    		leaf:          dnssecExpLeaf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 110.2K bytes
    - Viewed (0)
  3. pkg/apis/apps/validation/validation_test.go

    		},
    	}, {
    		name: "invalid ordinals.start",
    		set: mkStatefulSet(&validPodTemplate,
    			tweakReplicas(3),
    			tweakOrdinalsStart(-2),
    		),
    		errs: field.ErrorList{
    			field.Invalid(field.NewPath("spec", "ordinals.start"), nil, ""),
    		},
    	},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 111.9K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/mylasta/action/FessMessages.java

        /** The key of the message: Started data update process. */
        public static final String SUCCESS_started_data_update = "{success.started_data_update}";
    
        /** The key of the message: Started reindexing. */
        public static final String SUCCESS_reindex_started = "{success.reindex_started}";
    
        /** The key of the message: Bulk process is started. */
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 119.9K bytes
    - Viewed (0)
  5. pkg/kubelet/kubelet_test.go

    					ContainerID: emptyContainerID,
    				}},
    			},
    		},
    		// For terminated container:
    		// * If there is no recent start error record, State should be Terminated, LastTerminationState should be retrieved from
    		// second latest terminated status;
    		// * If there is recent start error record, State should be Waiting, LastTerminationState should be retrieved from latest
    		// terminated status;
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/ir/tfl_ops.cc

    namespace {
    
    // Compute the length of a range (1-D) tensor given `start`, `limit`, `delta`.
    // Template parameter `FloatOrInt` must be standard C integer or floating-point
    // types.
    template <typename FloatOrInt>
    int GetLengthOfRange(FloatOrInt start, FloatOrInt limit, FloatOrInt delta) {
      // Refer to the implementation in
      // tensorflow/lite/kernels/range.cc.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 02 09:41:17 UTC 2024
    - 169.2K bytes
    - Viewed (0)
  7. src/internal/trace/traceviewer/static/webcomponents.min.js

    =y||"?"==y||"#"==y){2!=d.length||!m.test(d[0])||":"!=d[1]&&"|"!=d[1]?0==d.length?l="relative path start":(this._host=r.call(this,d),d="",l="relative path start"):l="relative path";continue}"\t"==y||"\n"==y||"\r"==y?c("Invalid whitespace in file host."):d+=y;break;case"host":case"hostname":if(":"!=y||g){if(f==y||"/"==y||"\\"==y||"?"==y||"#"==y){if(this._host=r.call(this,d),d="",l="relative path start",a)break e;continue}"\t"!=y&&"\n"!=y&&"\r"!=y?("["==y?g=!0:"]"==y&&(g=!1),d+=y):c("Invalid code point...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 21 20:45:06 UTC 2023
    - 115.6K bytes
    - Viewed (0)
  8. src/net/http/transport_test.go

    	ts := newClientServerTest(t, mode, HandlerFunc(func(w ResponseWriter, r *Request) {})).ts
    
    	var mu sync.Mutex
    	var start, done bool
    	trace := &httptrace.ClientTrace{
    		TLSHandshakeStart: func() {
    			mu.Lock()
    			defer mu.Unlock()
    			start = true
    		},
    		TLSHandshakeDone: func(s tls.ConnectionState, err error) {
    			mu.Lock()
    			defer mu.Unlock()
    			done = true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 192.6K bytes
    - Viewed (0)
  9. src/cmd/go/alldocs.go

    //	testfunc        testing functions
    //	vcs             controlling version control with GOVCS
    //
    // Use "go help <topic>" for more information about that topic.
    //
    // # Start a bug report
    //
    // Usage:
    //
    //	go bug
    //
    // Bug opens the default browser and starts a new bug report.
    // The report includes useful system information.
    //
    // # Compile packages and dependencies
    //
    // Usage:
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  10. okhttp/src/test/java/okhttp3/CacheTest.kt

        if (shouldWriteToCache) {
          assertThat(cached).isNotNull()
          cached!!.body.close()
        } else {
          assertThat(cached).isNull()
        }
        server.shutdown() // tearDown() isn't sufficient; this test starts multiple servers
      }
    
      private fun assertSubsequentResponseCached(
        initialResponseCode: Int,
        finalResponseCode: Int,
      ) {
        server = MockWebServer()
        val builder =
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Wed Apr 10 19:46:48 UTC 2024
    - 108.6K bytes
    - Viewed (0)
Back to top