Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 196 for keydata (0.12 sec)

  1. security/pkg/nodeagent/cache/secretcache_test.go

    	testCases := map[string]struct {
    		certPath     string
    		keyPath      string
    		expectResult bool
    	}{
    		"cert not exist": {
    			certPath:     "./invalid-path/invalid-file",
    			keyPath:      "./testdata/cert-chain.pem",
    			expectResult: false,
    		},
    		"key not exist": {
    			certPath:     "./testdata/cert-chain.pem",
    			keyPath:      "./invalid-path/invalid-file",
    			expectResult: false,
    		},
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 16 22:12:28 UTC 2024
    - 23.9K bytes
    - Viewed (0)
  2. src/cmd/link/internal/ld/macho.go

    	}
    
    	/* data */
    	if ctxt.LinkMode != LinkExternal {
    		ms = newMachoSeg("__DATA", 20)
    		ms.vaddr = Segdata.Vaddr
    		ms.vsize = Segdata.Length
    		ms.fileoffset = Segdata.Fileoff
    		ms.filesize = Segdata.Filelen
    		ms.prot1 = 3
    		ms.prot2 = 3
    	}
    
    	for _, sect := range Segdata.Sections {
    		machoshbits(ctxt, ms, sect, "__DATA")
    	}
    
    	/* dwarf */
    	if !*FlagW {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:32:53 UTC 2024
    - 43.9K bytes
    - Viewed (0)
  3. cmd/kubeadm/app/util/pkiutil/pki_helpers_test.go

    }
    
    func TestPathsForCertAndKey(t *testing.T) {
    	crtPath, keyPath := PathsForCertAndKey("/foo", "bar")
    	expectedPath := filepath.FromSlash("/foo/bar.crt")
    	if crtPath != expectedPath {
    		t.Errorf("unexpected certificate path: %s", crtPath)
    	}
    	expectedPath = filepath.FromSlash("/foo/bar.key")
    	if keyPath != expectedPath {
    		t.Errorf("unexpected key path: %s", keyPath)
    	}
    }
    
    func TestPathForCert(t *testing.T) {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jan 31 21:49:21 UTC 2024
    - 22.5K bytes
    - Viewed (0)
  4. 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)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/ScriptRunner.java

         *
         * @return the script.
         */
        T getScript();
    
        /**
         * Returns the data extracted at compilation time.
         */
        M getData();
    
        /**
         * Returns true when the script will run some code when executed. Returns false for a script whose `run()` method is effectively empty.
         */
        boolean getRunDoesSomething();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jul 18 00:05:45 UTC 2016
    - 1.6K bytes
    - Viewed (0)
  6. 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)
  7. staging/src/k8s.io/cli-runtime/pkg/genericclioptions/record_flags.go

    		return nil, err
    	}
    
    	oldData, err := json.Marshal(obj)
    	if err != nil {
    		return nil, err
    	}
    	newData, err := json.Marshal(objCopy)
    	if err != nil {
    		return nil, err
    	}
    
    	return jsonpatch.CreateMergePatch(oldData, newData)
    }
    
    // parseCommandArguments will stringify and return all environment arguments ie. a command run by a client
    // using the factory.
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 5.5K bytes
    - Viewed (0)
  8. 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)
  9. fess-crawler-es/src/main/java/org/codelibs/fess/crawler/entity/EsAccessResultData.java

            setEncoding((String) src.get(ENCODING));
            final String dataStr = (String) src.get(DATA);
            if (dataStr != null) {
                try {
                    setData(Base64Util.decode(dataStr));
                } catch (final Exception e) {
                    throw new EsAccessException("data: " + dataStr, e);
                }
            }
        }
    
        @Override
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  10. 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)
Back to top