Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,387 for sltr (0.05 sec)

  1. src/internal/coverage/slicereader/slr_test.go

    	b = append(b, s2b...)
    
    	readStr := func(slr *Reader) string {
    		len := slr.ReadULEB128()
    		return slr.ReadString(int64(len))
    	}
    
    	for i := 0; i < 2; i++ {
    		slr := NewReader(b, i == 0)
    		g32 := slr.ReadUint32()
    		if g32 != e32 {
    			t.Fatalf("slr.ReadUint32() got %d want %d", g32, e32)
    		}
    		g64 := slr.ReadUint64()
    		if g64 != e64 {
    			t.Fatalf("slr.ReadUint64() got %d want %d", g64, e64)
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 23 11:36:28 UTC 2023
    - 1.9K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/glob_lit_test.bzl

        Args:
          name: str, name of the test_suite rule to generate for running all tests.
          exclude: [str], paths to exclude (for tests and inputs).
          test_file_exts: [str], extensions for files that are tests.
          default_size: str, the test size for targets not in "size_override".
          size_override: {str: str}, sizes to use for specific tests.
          data: [str], additional input data to the test.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Jul 06 19:29:19 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/quantization/tensorflow/python/pywrap_function_lib.pyi

          self,
          dst_saved_model_path: str,
          exported_model_serialized: bytes,
          src_saved_model_path: str,
          tags: set[str],
          serialized_signature_def_map: dict[str, bytes],
      ) -> Optional[bool]: ...
      # LINT.ThenChange()
    
      # LINT.IfChange(run_calibration)
      def run_calibration(
          self,
          saved_model_path: str,
          signature_keys: list[str],
          tags: set[str],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 09 06:33:29 UTC 2024
    - 1.6K bytes
    - Viewed (0)
  4. docs_src/security/tutorial004_py310.py

        }
    }
    
    
    class Token(BaseModel):
        access_token: str
        token_type: str
    
    
    class TokenData(BaseModel):
        username: str | None = None
    
    
    class User(BaseModel):
        username: str
        email: str | None = None
        full_name: str | None = None
        disabled: bool | None = None
    
    
    class UserInDB(User):
        hashed_password: str
    
    
    pwd_context = CryptContext(schemes=["bcrypt"], deprecated="auto")
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 4K bytes
    - Viewed (0)
  5. .github/actions/notify-translations/app/main.py

    
    def get_graphql_response(
        *,
        settings: Settings,
        query: str,
        after: Union[str, None] = None,
        category_id: Union[str, None] = None,
        discussion_number: Union[int, None] = None,
        discussion_id: Union[str, None] = None,
        comment_id: Union[str, None] = None,
        body: Union[str, None] = None,
    ) -> Dict[str, Any]:
        headers = {"Authorization": f"token {settings.input_token.get_secret_value()}"}
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Wed Sep 27 23:01:46 UTC 2023
    - 12.4K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/stablehlo/python/pywrap_quantization.pyi

    # LINT.IfChange(static_range_ptq)
    def static_range_ptq(
        src_saved_model_path: str,
        dst_saved_model_path: str,
        quantization_config_serialized: bytes,
        *,
        signature_keys: list[str],
        signature_def_map_serialized: dict[str, bytes],
        py_function_library: py_function_lib.PyFunctionLibrary,
    ) -> Any: ...  # Status
    
    # LINT.ThenChange()
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Mar 20 13:51:40 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  7. docs_src/security/tutorial005_py310.py

    }
    
    
    class Token(BaseModel):
        access_token: str
        token_type: str
    
    
    class TokenData(BaseModel):
        username: str | None = None
        scopes: list[str] = []
    
    
    class User(BaseModel):
        username: str
        email: str | None = None
        full_name: str | None = None
        disabled: bool | None = None
    
    
    class UserInDB(User):
        hashed_password: str
    
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon May 20 17:37:28 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    	} else if st.str[0] == 's' && len(st.str) > 1 && st.str[1] == 'P' {
    		st.advance(2)
    		var args []AST
    		for len(st.str) == 0 || st.str[0] != 'E' {
    			arg := st.templateArg(nil)
    			args = append(args, arg)
    		}
    		st.advance(1)
    		return &SizeofArgs{Args: args}
    	} else if st.str[0] == 'f' && len(st.str) > 1 && st.str[1] == 'p' {
    		st.advance(2)
    		if len(st.str) > 0 && st.str[0] == 'T' {
    			st.advance(1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  9. platforms/core-execution/persistent-cache/src/test/groovy/org/gradle/cache/internal/DefaultFileLockManagerWithCrossVersionProtocolTest.groovy

                assert str.readBoolean() != dirty
                // info version + port, lock-id, pid, operation-name
                assert str.readByte() == 3
                assert str.readInt() == 34
                assert str.readLong() == 678L
                assert str.readUTF() == processIdentifier
                assert str.readUTF() == operationalName
                assert str.read() < 0
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 10 15:52:52 UTC 2024
    - 2K bytes
    - Viewed (0)
  10. docs_src/nosql_databases/tutorial001.py

        return bucket
    
    
    class User(BaseModel):
        username: str
        email: Union[str, None] = None
        full_name: Union[str, None] = None
        disabled: Union[bool, None] = None
    
    
    class UserInDB(User):
        type: str = USERPROFILE_DOC_TYPE
        hashed_password: str
    
    
    def get_user(bucket: Bucket, username: str):
        doc_id = f"userprofile::{username}"
        result = bucket.get(doc_id, quiet=True)
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 14 11:59:59 UTC 2022
    - 1.3K bytes
    - Viewed (0)
Back to top