Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 380 for getZ (0.27 sec)

  1. subprojects/core-api/src/main/java/org/gradle/api/file/FileContents.java

         *     {@link Provider#get}, {@link Provider#getOrElse}, {@link Provider#getOrNull} and {@link Provider#isPresent}.
         * </p>
         *
         * @return provider of the entire file contents as a single String.
         */
        Provider<String> getAsText();
    
        /**
         * Gets a provider of the entire file contents as a single byte array.
         *
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 08 14:00:30 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. pkg/controller/podautoscaler/metrics/client.go

    // using data from the resource metrics API.
    type resourceMetricsClient struct {
    	client resourceclient.PodMetricsesGetter
    }
    
    // GetResourceMetric gets the given resource metric (and an associated oldest timestamp)
    // for all pods matching the specified selector in the given namespace
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Feb 16 20:17:52 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  3. src/runtime/testdata/testprogcgo/dropm_stub.go

    // license that can be found in the LICENSE file.
    
    package main
    
    import _ "unsafe" // for go:linkname
    
    // Defined in the runtime package.
    //
    //go:linkname runtime_getm_for_test runtime.getm
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 05 17:54:15 UTC 2022
    - 336 bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/util/apihelpers/helpers.go

    		existingCondition.LastTransitionTime = newCondition.LastTransitionTime
    	}
    
    	existingCondition.Reason = newCondition.Reason
    	existingCondition.Message = newCondition.Message
    }
    
    // GetFlowSchemaConditionByType gets conditions.
    func GetFlowSchemaConditionByType(flowSchema *flowcontrol.FlowSchema, conditionType flowcontrol.FlowSchemaConditionType) *flowcontrol.FlowSchemaCondition {
    	for i := range flowSchema.Status.Conditions {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Oct 30 12:18:35 UTC 2023
    - 3.4K bytes
    - Viewed (0)
  5. src/syscall/asm_linux_s390x.s

    	SYSCALL
    	MOVD	R2, r1+32(FP)
    	MOVD	R3, r2+40(FP)
    	RET
    
    #define SYS_SOCKETCALL 102	/* from zsysnum_linux_s390x.go */
    
    // func socketcall(call int, a0, a1, a2, a3, a4, a5 uintptr) (n int, err int)
    // Kernel interface gets call sub-number and pointer to a0.
    TEXT ·socketcall(SB),NOSPLIT,$0-72
    	BL	runtime·entersyscall(SB)
    	MOVD	$SYS_SOCKETCALL, R1	// syscall entry
    	MOVD	call+0(FP), R2		// socket call number
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 07 19:11:15 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  6. test/fixedbugs/bug440_64.go

    // run
    
    // Test for 6g register move bug.  The optimizer gets confused
    // about 32- vs 64-bit moves during splitContractIndex.
    
    // Issue 3918.
    
    package main
    
    func main() {
    	const c = 0x123400005678
    	index, offset := splitContractIndex(c)
    	if index != (c&0xffffffff)>>5 || offset != c+1 {
    		println("BUG", index, offset)
    	}
    }
    
    func splitContractIndex(ce uint64) (index uint32, offset uint64) {
    	h := uint32(ce)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 01 14:40:54 UTC 2012
    - 435 bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/ivyservice/NamespaceId.java

            } catch (IOException e) {
                throw new RuntimeException("Failed encoding namespace ID '" + name + "'");
            }
        }
    
        /**
         * Gets the namespace for this identifier.
         *
         * @return the namespace for this identifier
         */
        public String getNamespace() {
            return namespace;
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  8. src/runtime/os_aix.go

    // This will return a pointer to errno.
    func miniterrno() {
    	mp := getg().m
    	r, _ := syscall0(&libc__Errno)
    	mp.perrno = r
    
    }
    
    func minit() {
    	miniterrno()
    	minitSignals()
    	getg().m.procid = uint64(pthread_self())
    }
    
    func unminit() {
    	unminitSignals()
    	getg().m.procid = 0
    }
    
    // Called from exitm, but not from drop, to undo the effect of thread-owned
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 8.9K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/cmd/phases/join/controlplanejoin.go

    	data, ok := c.(JoinData)
    	if !ok {
    		return errors.New("control-plane-join phase invoked with an invalid data struct")
    	}
    
    	if data.Cfg().ControlPlane == nil {
    		return nil
    	}
    
    	// gets access to the cluster using the identity defined in admin.conf
    	client, err := data.Client()
    	if err != nil {
    		return errors.Wrap(err, "couldn't create Kubernetes client")
    	}
    	cfg, err := data.InitCfg()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 17 03:09:42 UTC 2024
    - 5.7K bytes
    - Viewed (0)
  10. maven-builder-support/src/main/java/org/apache/maven/building/FileSource.java

            return path.toString();
        }
    
        /**
         * Gets the file of this source.
         *
         * @return The underlying file, never {@code null}.
         * @deprecated Use {@link #getPath()} instead.
         */
        @Deprecated
        public File getFile() {
            return path.toFile();
        }
    
        /**
         * Gets the file of this source.
         *
         * @return The underlying file, never {@code null}.
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Feb 26 17:04:44 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top