Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 27 for Beta (0.25 sec)

  1. CHANGELOG/CHANGELOG-1.3.md

    - [v1.3.0-beta.3](#v130-beta3)
      - [Downloads](#downloads-10)
      - [Changelog since v1.3.0-beta.2](#changelog-since-v130-beta2)
        - [Action Required](#action-required)
        - [Other notable changes](#other-notable-changes-10)
    - [v1.3.0-beta.2](#v130-beta2)
      - [Downloads](#downloads-11)
      - [Changes since v1.3.0-beta.1](#changes-since-v130-beta1)
    Plain Text
    - Registered: Fri Apr 26 09:05:10 GMT 2024
    - Last Modified: Thu Dec 24 02:28:26 GMT 2020
    - 84K bytes
    - Viewed (0)
  2. okhttp/src/test/java/okhttp3/internal/http2/HttpOverHttp2Test.kt

            .addHeaderLenient("Alpha", "α")
            .addHeaderLenient("β", "Beta")
            .build(),
        )
        val call = client.newCall(Request(server.url("/")))
        val response = call.execute()
        response.close()
        assertThat(response.header("Alpha")).isEqualTo("α")
        assertThat(response.header("β")).isEqualTo("Beta")
      }
    
      @ParameterizedTest
      @ArgumentsSource(ProtocolParamProvider::class)
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Thu Apr 11 22:09:35 GMT 2024
    - 75.3K bytes
    - Viewed (0)
  3. tensorflow/c/c_api_function_test.cc

    // check the data type.
    typedef std::pair<string, DataType> IOSpec;
    
    const char* kFeedStackToString = "File \"feed.cc\", line 10, in alpha";
    const char* kNegStackToString = "File \"neg.cc\", line 15, in beta";
    
    std::vector<IOSpec> M(const std::initializer_list<string>& names) {
      std::vector<IOSpec> v;
      for (const string& name : names) {
        v.push_back(IOSpec(name, DT_INVALID));
      }
      return v;
    }
    
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Thu Jul 20 22:08:54 GMT 2023
    - 63.6K bytes
    - Viewed (6)
  4. docs/en/docs/img/sponsors/deta.svg

    deta.svg...
    SVG Image
    - Registered: Sun Apr 21 07:19:11 GMT 2024
    - Last Modified: Sat May 08 17:50:56 GMT 2021
    - 55.2K bytes
    - Viewed (0)
  5. docs/changelogs/changelog_3x.md

        to do domain fronting.
     *  New: charset support for `Credentials.basic()`.
    
    
    ## Version 3.5.0
    
    _2016-11-30_
    
     *  **Web Sockets are now a stable feature of OkHttp.** Since being introduced as a beta feature in
        OkHttp 2.3 our web socket client has matured. Connect to a server's web socket with
        `OkHttpClient.newWebSocket()`, send messages with `send()`, and receive messages with the
        `WebSocketListener`.
    
    Plain Text
    - Registered: Fri Apr 26 11:42:10 GMT 2024
    - Last Modified: Sun Feb 06 14:55:54 GMT 2022
    - 50.8K bytes
    - Viewed (0)
  6. android/guava/src/com/google/thirdparty/publicsuffix/PublicSuffixPatterns.java

     * See the License for the specific language governing permissions and
     * limitations under the License.
     */
    
    package com.google.thirdparty.publicsuffix;
    
    import com.google.common.annotations.Beta;
    import com.google.common.annotations.GwtCompatible;
    import com.google.common.collect.ImmutableMap;
    
    /**
     * <b>Do not use this class directly. For access to public-suffix information, use {@link
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Thu Mar 21 21:04:43 GMT 2024
    - 72.4K bytes
    - Viewed (1)
  7. cmd/testdata/xl.meta-v1.2.zst

    Klaus Post <******@****.***> 1637266522 -0800
    Others
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Thu Nov 18 20:15:22 GMT 2021
    - 56.7K bytes
    - Viewed (0)
  8. cmd/xl-storage-format-v2.go

    				_, ok2 := version.DeleteMarker.MetaSys[ReservedMetadataPrefixLower+ReplicaTimestamp]
    				if ok1 || ok2 {
    					meta, err := version.MarshalMsg(make([]byte, 0, len(ver.meta)+10))
    					if err == nil {
    						// Override both if fine.
    						ver.header = version.header()
    						ver.meta = meta
    					}
    				}
    			}
    		}
    		return nil
    	})
    }
    
    // loadLegacy will load content prior to v1.3
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 16:43:43 GMT 2024
    - 63.6K bytes
    - Viewed (1)
  9. cmd/xl-storage.go

    	dataUsageInfo, err := scanDataFolder(ctx, disks, s.drivePath, cache, func(item scannerItem) (sizeSummary, error) {
    		// Look for `xl.meta/xl.json' at the leaf.
    		if !strings.HasSuffix(item.Path, SlashSeparator+xlStorageFormatFile) &&
    			!strings.HasSuffix(item.Path, SlashSeparator+xlStorageFormatFileV1) {
    			// if no xl.meta/xl.json found, skip the file.
    			return sizeSummary{}, errSkipFile
    		}
    Go
    - Registered: Sun Apr 21 19:28:08 GMT 2024
    - Last Modified: Fri Apr 19 11:26:59 GMT 2024
    - 82.4K bytes
    - Viewed (0)
  10. tensorflow/c/c_api_test.cc

      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_TF_META("v", 0, TF_ATTR_INT, -1);
    }
    
    TEST_F(CApiAttributesTest, Names) {
      auto desc = init("string");
      TF_SetAttrString(desc, "v", "bunny", 5);
    
      auto oper = TF_FinishOperation(desc, s_);
      ASSERT_EQ(TF_OK, TF_GetCode(s_)) << TF_Message(s_);
      EXPECT_TF_META("v", -1, TF_ATTR_STRING, 5);
    
      ASSERT_EQ(1, TF_OperationGetNumAttrs(oper));
    C++
    - Registered: Tue Apr 23 12:39:09 GMT 2024
    - Last Modified: Mon Apr 15 03:35:10 GMT 2024
    - 96.9K bytes
    - Viewed (3)
Back to top