Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 33 for kId (0.09 sec)

  1. tensorflow/compiler/mlir/lite/experimental/tac/common/targets.h

      } else {
        return "UNKNOWN";
      }
    }
    
    // Returns canonical representation for hardware name (All uppercase).
    // TODO(b/177376459): Remove this in favor of the string defined by hardwares
    // MyHardware::kId.
    inline std::string GetCanonicalHardwareName(const std::string& hardware_name) {
      std::string name = hardware_name;
      std::transform(
          name.begin(), name.end(), name.begin(),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 06 03:08:33 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/lite/experimental/tac/README.md

    If you want to add a hardware backend for TAC, you can start with the
    `SimpleHardware` interface.
    
    For example:
    
    ```
    class FooHardware : public SimpleHardware {
     public:
      static constexpr char kId[] = "FOO";
    
      mlir::RewritePatternSet GetTransformations(
          MLIRContext* context) const override {
        mlir::RewritePatternSet patterns;
        // Pick the transformations that we want to perform,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 29 18:32:13 UTC 2022
    - 11.6K bytes
    - Viewed (0)
  3. samples/jwt-server/src/main.go

    package main
    
    import (
    	"flag"
    	"fmt"
    	"log"
    	"net"
    	"net/http"
    	"os"
    	"os/signal"
    	"sync"
    	"syscall"
    	"time"
    )
    
    const (
    	// nolint: lll
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 16 23:56:50 UTC 2024
    - 4.4K bytes
    - Viewed (0)
  4. security/tools/jwt/samples/gen-jwt.py

                        v = v[0]
                    nested[k] = v
            nested["nested-2"] = copy.copy(nested)
            payload[args.nestedkey] = nested
    
        token = jwt.JWT(header={"alg": "RS256", "typ": "JWT", "kid": key.key_id},
                        claims=payload)
    
        token.make_signed_token(key)
    
        return token.serialize()
    
    
    if __name__ == '__main__':
        parser = argparse.ArgumentParser(
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 11 16:38:57 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/link/internal/ld/dwarf_test.go

    		pidx := ex.IdxFromOffset(die.Offset)
    		if pidx < 0 {
    			t.Fatalf("can't locate DIE id")
    		}
    		kids := ex.Children(pidx)
    		for _, kid := range kids {
    			if kid.Tag != dwarf.TagVariable &&
    				kid.Tag != dwarf.TagFormalParameter {
    				continue
    			}
    			kooff, originOK := kid.Val(dwarf.AttrAbstractOrigin).(dwarf.Offset)
    			if !originOK {
    				continue
    			}
    			childOriginDIE := ex.EntryFromOffset(kooff)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Feb 08 01:38:11 UTC 2024
    - 48.6K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/plugin/pkg/authenticator/token/oidc/oidc_test.go

    	if err != nil {
    		return nil, err
    	}
    	if len(jws.Signatures) == 0 {
    		return nil, fmt.Errorf("jwt contained no signatures")
    	}
    	kid := jws.Signatures[0].Header.KeyID
    
    	for _, key := range s.keys {
    		if key.KeyID == kid {
    			return jws.Verify(key)
    		}
    	}
    
    	return nil, fmt.Errorf("no keys matches jwk keyid")
    }
    
    var (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 97.7K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    hall.
    
      After a time she heard a little pattering of feet in the
    distance, and she hastily dried her eyes to see what was coming.
    It was the White Rabbit returning, splendidly dressed, with a
    pair of white kid gloves in one hand and a large fan in the
    other:  he came trotting along in a great hurry, muttering to
    himself as he came, `Oh! the Duchess, the Duchess! Oh! won't she
    be savage if I've kept her waiting!'  Alice felt so desperate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Oct 29 21:35:03 UTC 2012
    - 145.2K bytes
    - Viewed (0)
  8. android/guava-tests/test/com/google/common/io/testdata/alice_in_wonderland.txt

    hall.
    
      After a time she heard a little pattering of feet in the
    distance, and she hastily dried her eyes to see what was coming.
    It was the White Rabbit returning, splendidly dressed, with a
    pair of white kid gloves in one hand and a large fan in the
    other:  he came trotting along in a great hurry, muttering to
    himself as he came, `Oh! the Duchess, the Duchess! Oh! won't she
    be savage if I've kept her waiting!'  Alice felt so desperate
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Apr 21 02:27:51 UTC 2017
    - 145.2K bytes
    - Viewed (0)
  9. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnostics.kt

        }
    
        interface JsExternalInheritorsOnly : KaFirDiagnostic<KtDeclaration> {
            override val diagnosticClass get() = JsExternalInheritorsOnly::class
            val parent: KaClassLikeSymbol
            val kid: KaClassLikeSymbol
        }
    
        interface JsExternalArgument : KaFirDiagnostic<KtExpression> {
            override val diagnosticClass get() = JsExternalArgument::class
            val argType: KaType
        }
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 172.6K bytes
    - Viewed (0)
  10. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/diagnostics/KtFirDiagnosticsImpl.kt

    internal class JsExternalInheritorsOnlyImpl(
        override val parent: KaClassLikeSymbol,
        override val kid: KaClassLikeSymbol,
        firDiagnostic: KtPsiDiagnostic,
        token: KaLifetimeToken,
    ) : KaAbstractFirDiagnostic<KtDeclaration>(firDiagnostic, token), KaFirDiagnostic.JsExternalInheritorsOnly
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 04 11:41:05 UTC 2024
    - 227.2K bytes
    - Viewed (0)
Back to top