Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 72 for keydata (0.17 sec)

  1. cmd/kubeadm/app/apis/bootstraptoken/v1/utils.go

    	}
    
    	// Get the description (if any) from the Secret
    	description := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenDescriptionKey)
    
    	// Expiration time is optional, if not specified this implies the token
    	// never expires.
    	secretExpiration := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenExpirationKey)
    	var expires *metav1.Time
    	if len(secretExpiration) > 0 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 26 15:51:39 UTC 2023
    - 8.3K bytes
    - Viewed (0)
  2. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/report/ExecutionGraph.java

        public ExecutionGraph(int index, Line... lines) {
            this.index = index;
            this.title = "Execution " + index + " (ms)";
            this.data = Arrays.asList(lines);
        }
    
        String getData() {
            return JsonOutput.toJson(data);
        }
    
        String getTicks() {
            List<List<Object>> ticks = IntStream.range(0, data.get(0).data.size())
                .mapToObj(index -> Arrays.<Object>asList(index, index))
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 1.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/main/java/org/apache/maven/internal/impl/InternalSession.java

        static InternalSession from(org.eclipse.aether.RepositorySystemSession session) {
            return cast(InternalSession.class, session.getData().get(InternalSession.class), "session");
        }
    
        static void associate(org.eclipse.aether.RepositorySystemSession rsession, Session session) {
            if (!rsession.getData().set(InternalSession.class, null, from(session))) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Tue Apr 23 12:55:57 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  4. maven-core/src/test/java/org/apache/maven/internal/transformation/impl/ConsumerPomArtifactTransformerTest.java

            RepositorySystemSession systemSessionMock = Mockito.mock(RepositorySystemSession.class);
            SessionData sessionDataMock = Mockito.mock(SessionData.class);
            when(systemSessionMock.getData()).thenReturn(sessionDataMock);
            when(sessionDataMock.get(any())).thenReturn(new NoTransformerContext());
    
            Path beforePomFile =
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon May 13 12:04:39 UTC 2024
    - 5.8K bytes
    - Viewed (0)
  5. plugin/pkg/auth/authenticator/token/bootstrap/bootstrap.go

    		return nil, false, nil
    	}
    
    	ts := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenSecretKey)
    	if subtle.ConstantTimeCompare([]byte(ts), []byte(tokenSecret)) != 1 {
    		tokenErrorf(secret, "has invalid value for key %s.", bootstrapapi.BootstrapTokenSecretKey)
    		return nil, false, nil
    	}
    
    	id := bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenIDKey)
    	if id != tokenID {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 30 20:38:15 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  6. docs/en/docs/js/custom.js

        const data = await response.json()
        return data
    }
    
    async function getData() {
        let page = 1
        let data = []
        let dataBatch = await getDataBatch(page)
        data = data.concat(dataBatch.items)
        const totalCount = dataBatch.total_count
        while (data.length < totalCount) {
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat May 08 17:50:56 UTC 2021
    - 6.6K bytes
    - Viewed (0)
  7. pilot/pkg/serviceregistry/kube/controller/namespacecontroller_test.go

    	watcher.SetAndNotify(nil, nil, newCaBundle)
    	newData := map[string]string{
    		constants.CACertNamespaceConfigMapDataName: string(newCaBundle),
    	}
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, "foo", newData)
    
    	deleteConfigMap(t, client.Kube(), "foo")
    	expectConfigMap(t, nc.configmaps, CACertNamespaceConfigMap, "foo", newData)
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 15:07:03 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  8. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/DefaultScriptRunnerFactory.java

                    listener.onScriptClassLoaded(source, scriptClass);
                }
                return script;
            }
    
            @Override
            public M getData() {
                return compiledScript.getData();
            }
    
            @Override
            public boolean getRunDoesSomething() {
                return compiledScript.getRunDoesSomething();
            }
    
            @Override
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 02 17:39:25 UTC 2020
    - 3.8K bytes
    - Viewed (0)
  9. pkg/kubelet/winstats/perfcounter_nodestats.go

    	cpuValue, err := cpuCounter.getData()
    	cpuCores := ProcessorCount()
    	if err != nil {
    		klog.ErrorS(err, "Unable to get cpu perf counter data")
    		return
    	}
    
    	memWorkingSetValue, err := memWorkingSetCounter.getData()
    	if err != nil {
    		klog.ErrorS(err, "Unable to get memWorkingSet perf counter data")
    		return
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jan 26 18:37:21 UTC 2024
    - 9.2K bytes
    - Viewed (0)
  10. src/internal/syscall/unix/getentropy_netbsd.go

    		syscall.SYS___SYSCTL,
    		uintptr(unsafe.Pointer(&mib[0])),
    		uintptr(len(mib)),
    		uintptr(unsafe.Pointer(&p[0])), // olddata
    		uintptr(unsafe.Pointer(&n)),    // &oldlen
    		uintptr(unsafe.Pointer(nil)),   // newdata
    		0)                              // newlen
    	if errno != 0 {
    		return syscall.Errno(errno)
    	}
    	if n != uintptr(len(p)) {
    		return syscall.EINVAL
    	}
    	return nil
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 19:42:54 UTC 2023
    - 779 bytes
    - Viewed (0)
Back to top