Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 88 for keydata (0.21 sec)

  1. tensorflow/compiler/mlir/lite/transforms/dense_to_sparse.cc

        for (const auto val : attr.getValues<float>()) data.push_back(val);
        format_converter.DenseToSparse(data.data());
        sparsity =
            GetSparsity(type.getNumElements() - format_converter.GetData().size(),
                        type.getNumElements());
      } else if (type.getElementType().isF16()) {
        tflite::internal::sparsity::FormatConverter<Eigen::half> format_converter(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 16.1K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/pe.go

    	var d *peSection
    	if ctxt.LinkMode != LinkExternal {
    		d = pefile.addSection(".data", int(Segdata.Length), int(Segdata.Filelen))
    		d.characteristics = IMAGE_SCN_CNT_INITIALIZED_DATA | IMAGE_SCN_MEM_READ | IMAGE_SCN_MEM_WRITE
    		d.checkSegment(&Segdata)
    		pefile.dataSect = d
    	} else {
    		d = pefile.addSection(".data", int(Segdata.Filelen), int(Segdata.Filelen))
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 09 19:01:27 UTC 2023
    - 48.8K bytes
    - Viewed (0)
  3. cmd/iam-etcd-store.go

    	}
    	return err
    }
    
    func (ies *IAMEtcdStore) watch(ctx context.Context, keyPath string) <-chan iamWatchEvent {
    	ch := make(chan iamWatchEvent)
    
    	// go routine to read events from the etcd watch channel and send them
    	// down `ch`
    	go func() {
    		for {
    		outerLoop:
    			watchCh := ies.client.Watch(ctx,
    				keyPath, etcd.WithPrefix(), etcd.WithKeysOnly())
    
    			for {
    				select {
    				case <-ctx.Done():
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 13.6K bytes
    - Viewed (0)
  4. maven-core/src/main/java/org/apache/maven/plugin/internal/DefaultPluginValidationManager.java

                }
            }
        }
    
        private List<?> validationPluginExcludes(RepositorySystemSession session) {
            return (List<?>) session.getData().computeIfAbsent(PLUGIN_EXCLUDES_KEY, () -> parsePluginExcludes(session));
        }
    
        private List<String> parsePluginExcludes(RepositorySystemSession session) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 23 12:25:04 UTC 2024
    - 17.7K bytes
    - Viewed (0)
  5. pkg/apis/certificates/validation/validation.go

    	if err != nil {
    		return err
    	}
    	// check that the signature is valid
    	return csr.CheckSignature()
    }
    
    func validateCertificate(pemData []byte) error {
    	if len(pemData) == 0 {
    		return nil
    	}
    
    	blocks := 0
    	for {
    		block, remainingData := pem.Decode(pemData)
    		if block == nil {
    			break
    		}
    
    		if block.Type != utilcert.CertificateBlockType {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Nov 03 18:40:49 UTC 2023
    - 20.1K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/server/options/serving_test.go

    	}
    
    	return nil
    }
    
    func caCertFromBundle(bundlePath string) (*x509.Certificate, error) {
    	pemData, err := ioutil.ReadFile(bundlePath)
    	if err != nil {
    		return nil, err
    	}
    
    	// fetch last block
    	var block *pem.Block
    	for {
    		var nextBlock *pem.Block
    		nextBlock, pemData = pem.Decode(pemData)
    		if nextBlock == nil {
    			if block == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 09 15:52:39 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  7. staging/src/k8s.io/apiserver/pkg/authentication/request/x509/x509_test.go

    	}
    	return certs
    }
    
    func getCert(t *testing.T, pemData string) *x509.Certificate {
    	t.Helper()
    
    	pemBlock, _ := pem.Decode([]byte(pemData))
    	cert, err := x509.ParseCertificate(pemBlock.Bytes)
    	if err != nil {
    		t.Fatalf("Error parsing cert: %v", err)
    		return nil
    	}
    	return cert
    }
    
    func getCerts(t *testing.T, pemData ...string) []*x509.Certificate {
    	certs := []*x509.Certificate{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 02 23:23:03 UTC 2024
    - 36.9K bytes
    - Viewed (0)
  8. security/pkg/nodeagent/cache/secretcache.go

    // Otherwise, return false.
    func (sc *SecretManagerClient) keyCertificateExist(certPath, keyPath string) bool {
    	b, err := os.ReadFile(certPath)
    	if err != nil || len(b) == 0 {
    		return false
    	}
    	b, err = os.ReadFile(keyPath)
    	if err != nil || len(b) == 0 {
    		return false
    	}
    
    	return true
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/core/xml/DomUtil.java

         */
        public static void appendText(final Text text, final StringBuilder buf) {
            assertArgumentNotNull("text", text);
            assertArgumentNotNull("buf", buf);
    
            buf.append(encodeText(text.getData()));
        }
    
        /**
         * {@link CDATASection}の文字列表現を追加します。
         *
         * @param cdataSection
         *            CDATAセクション。{@literal null}であってはいけません
         * @param buf
    Registered: Wed Jun 12 12:50:12 UTC 2024
    - Last Modified: Thu Mar 07 01:59:08 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  10. internal/s3select/sql/parser.go

    }
    
    // TableExpression represents the FROM clause
    type TableExpression struct {
    	Table *JSONPath `parser:"@@"`
    	As    string    `parser:"( \"AS\"? @Ident )?"`
    }
    
    // JSONPathElement represents a keypath component
    type JSONPathElement struct {
    	Key            *ObjectKey `parser:"  @@"`               // ['name'] and .name forms
    	Index          *int       `parser:"| \"[\" @Int \"]\""` // [3] form
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 12.9K bytes
    - Viewed (0)
Back to top