Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 127 for retData (0.21 sec)

  1. pkg/controller/bootstrap/util.go

    	if !ok {
    		logger.V(3).Info("Invalid secret name, must be of the form "+bootstrapapi.BootstrapTokenSecretPrefix+"<secret-id>", "secretName", secret.Name)
    		return "", "", false
    	}
    
    	tokenID = bootstrapsecretutil.GetData(secret, bootstrapapi.BootstrapTokenIDKey)
    	if len(tokenID) == 0 {
    		logger.V(3).Info("No key in Secret", "key", bootstrapapi.BootstrapTokenIDKey, "secret", klog.KObj(secret))
    		return "", "", false
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 02:18:40 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  2. pkg/kubelet/winstats/perfcounters.go

    	}
    
    	return &perfCounterImpl{
    		queryHandle:   queryHandle,
    		counterHandle: counterHandle,
    	}, nil
    }
    
    // getData is used for getting data without * in counter name.
    func (p *perfCounterImpl) getData() (uint64, error) {
    	filledBuf, bufCount, err := p.getQueriedData()
    	if err != nil {
    		return 0, err
    	}
    
    	var data uint64 = 0
    	for i := 0; i < int(bufCount); i++ {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Mar 13 19:13:24 UTC 2023
    - 4.3K bytes
    - Viewed (0)
  3. pkg/kubelet/checkpointmanager/checkpoint_manager_test.go

    		err := manager.GetCheckpoint(tc.checkpointKey, checkpointOut)
    		assert.NoError(t, err)
    		actualPortMappings, actualHostNetwork := checkpointOut.GetData()
    		expPortMappings, expHostNetwork := tc.checkpoint.GetData()
    		assert.Equal(t, actualPortMappings, expPortMappings)
    		assert.Equal(t, actualHostNetwork, expHostNetwork)
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 12 06:41:04 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  4. src/main/java/org/codelibs/fess/crawler/transformer/AbstractFessFileTransformer.java

                return abbreviateSite("\\\\" + value.replace('/', '\\'));
            }
    
            return getSite(url, encoding);
        }
    
        @Override
        public Object getData(final AccessResultData<?> accessResultData) {
            final byte[] data = accessResultData.getData();
            if (data != null) {
                try {
                    return SerializeUtil.fromBinaryToObject(data);
                } catch (final Exception e) {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  5. src/internal/types/testdata/fixedbugs/issue61879.go

    // Larger example from issue
    
    type InterfaceA[T comparable] interface {
    	setData(string) InterfaceA[T]
    }
    
    type ImplA[T comparable] struct {
    	data string
    	args []any
    }
    
    func NewInterfaceA[T comparable](args ...any) InterfaceA[T] {
    	return &ImplA[T]{
    		data: fmt.Sprintf("%v", args...),
    		args: args,
    	}
    }
    
    func (k *ImplA[T]) setData(data string) InterfaceA[T] {
    	k.data = data
    	return k
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 15 19:42:56 UTC 2023
    - 1K bytes
    - Viewed (0)
  6. src/main/java/jcifs/http/NetworkExplorer.java

                String qs = req.getQueryString();
                DfsReferralData refdata = dr.getData();
                redir = new StringBuffer(redir.substring(0, redir.length() - req.getPathInfo().length()));
                redir.append('/');
                redir.append(refdata.getServer());
                redir.append('/');
                redir.append(refdata.getShare());
                redir.append('/');
                if ( qs != null ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 21.3K bytes
    - Viewed (0)
  7. pkg/kubelet/cm/devicemanager/checkpoint/checkpoint.go

    func (cp *Data) VerifyChecksum() error {
    	return cp.Checksum.Verify(cp.Data)
    }
    
    // GetData returns device entries and registered devices in the *most recent*
    // checkpoint format, *not* in the original format stored on disk.
    func (cp *Data) GetData() ([]PodDevicesEntry, map[string][]string) {
    	return cp.Data.PodDeviceEntries, cp.Data.RegisteredDevices
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Apr 15 12:01:56 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top