Search Options

Results per page
Sort
Preferred Languages
Advance

Results 151 - 160 of 1,485 for corerest (0.14 sec)

  1. src/reflect/float32reg_ppc64x.s

    //go:build ppc64 || ppc64le
    
    #include "textflag.h"
    
    // On PPC64, the float32 becomes a float64
    // when loaded in a register, different from
    // other platforms. These functions are
    // needed to ensure correct conversions on PPC64.
    
    // Convert float32->uint64
    TEXT ·archFloat32ToReg(SB),NOSPLIT,$0-16
    	FMOVS	val+0(FP), F1
    	FMOVD	F1, ret+8(FP)
    	RET
    
    // Convert uint64->float32
    TEXT ·archFloat32FromReg(SB),NOSPLIT,$0-12
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Nov 06 10:24:44 UTC 2021
    - 838 bytes
    - Viewed (0)
  2. test/decl.go

    // run
    
    // Copyright 2009 The Go Authors. All rights reserved.
    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test correct short declarations and redeclarations.
    
    package main
    
    func f1() int                    { return 1 }
    func f2() (float32, int)         { return 1, 2 }
    func f3() (float32, int, string) { return 1, 2, "3" }
    
    func x() (s string) {
    	a, b, s := f3()
    	_, _ = a, b
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 926 bytes
    - Viewed (0)
  3. src/os/executable.go

    // license that can be found in the LICENSE file.
    
    package os
    
    // Executable returns the path name for the executable that started
    // the current process. There is no guarantee that the path is still
    // pointing to the correct executable. If a symlink was used to start
    // the process, depending on the operating system, the result might
    // be the symlink or the path it pointed to. If a stable result is
    // needed, [path/filepath.EvalSymlinks] might help.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 21:33:12 UTC 2024
    - 776 bytes
    - Viewed (0)
  4. operator/pkg/controller/istiocontrolplane/errdict.go

    	// Action
    	actionIfErrPersistsCheckBugList            = "If this error persists, " + actionCheckBugList
    	actionIfErrSureCorrectConfigContactSupport = "If you are sure your configuration is correct, " + actionCheckBugList
    	actionCheckBugList                         = "see https://istio.io/latest/about/bugs for possible solutions."
    
    	// LikelyCause
    	likelyCauseAPIServer     = "a problem with the Kubernetes API server"
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 13:56:46 UTC 2024
    - 4.7K bytes
    - Viewed (0)
  5. src/cmd/vet/testdata/print/print.go

    	fmt.Printf("%z", FormatterVal(true))        // correct (the type is responsible for formatting)
    	fmt.Printf("%d", FormatterVal(true))        // correct (the type is responsible for formatting)
    	fmt.Printf("%s", nonemptyinterface)         // correct (the type is responsible for formatting)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 09 01:28:01 UTC 2023
    - 27.5K bytes
    - Viewed (0)
  6. platforms/extensibility/plugin-use/src/integTest/groovy/org/gradle/plugin/use/PluginApplicationOrderIntegrationSpec.groovy

            given:
            publishPlugin """
                if (!project.pluginManager.hasPlugin('java')) {
                    throw new Exception('plugin application order is not correct')
                }
            """
    
            when:
            buildScript """
                plugins {
                    id 'java'
                    id '$PLUGIN_ID' version '$VERSION'
                }
            """
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 22:36:52 UTC 2023
    - 1.3K bytes
    - Viewed (0)
  7. pkg/controlplane/reconcilers/endpointsadapter_test.go

    			// No error when we need to create the Endpoints but the correct
    			// EndpointSlice already exists
    			expectedError:  nil,
    			expectedResult: endpoints1,
    			expectCreate:   []runtime.Object{endpoints1},
    			initialState:   []runtime.Object{epSlice1},
    			namespaceParam: endpoints1.Namespace,
    			endpointsParam: endpoints1,
    		},
    		"existing-endpointslice-correct": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 18 12:23:16 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  8. src/reflect/float32reg_riscv64.s

    // license that can be found in the LICENSE file.
    
    #include "textflag.h"
    
    // riscv64 allows 32-bit floats to live in the bottom
    // part of the register, it expects them to be NaN-boxed.
    // These functions are needed to ensure correct conversions
    // on riscv64.
    
    // Convert float32->uint64
    TEXT ·archFloat32ToReg(SB),NOSPLIT,$0-16
    	MOVF	val+0(FP), F1
    	MOVD	F1, ret+8(FP)
    	RET
    
    // Convert uint64->float32
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 04 13:38:32 UTC 2022
    - 794 bytes
    - Viewed (0)
  9. test/fixedbugs/bug274.go

    package main
    
    func main() {
    	switch 0 {
    	case 0:
    		L0:  // ERROR "statement"
    	case 1:
    		L1:  // ERROR "statement"
    	default:
    		     // correct since no semicolon is required before a '}'
    		goto L2
    		L2:
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 888 bytes
    - Viewed (0)
  10. subprojects/core/src/main/java/org/gradle/api/internal/initialization/loadercache/ClassLoaderId.java

     * limitations under the License.
     */
    
    package org.gradle.api.internal.initialization.loadercache;
    
    import org.gradle.api.Describable;
    
    /**
     * Opaque identifier of the classloader. Needed for correct behavior of classloader invalidation.
     */
    public interface ClassLoaderId extends Describable {
        @Override
        boolean equals(Object o);
        @Override
        int hashCode();
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Jan 26 14:58:23 UTC 2024
    - 953 bytes
    - Viewed (0)
Back to top