Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 638 for stbu (0.05 sec)

  1. src/cmd/vendor/golang.org/x/arch/ppc64/ppc64asm/gnu.go

    		return true
    	case LWA, LWAX, LWAUX:
    		return true
    	case LD, LDU, LDX, LDUX:
    		return true
    	case LQ:
    		return true
    	case STB, STBU, STBX, STBUX:
    		return true
    	case STH, STHU, STHX, STHUX:
    		return true
    	case STW, STWU, STWX, STWUX:
    		return true
    	case STD, STDU, STDX, STDUX:
    		return true
    	case STQ:
    		return true
    	case LHBRX, LWBRX, STHBRX, STWBRX:
    		return true
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:33 UTC 2023
    - 12.2K bytes
    - Viewed (0)
  2. pkg/kubelet/cm/devicemanager/plugin/v1beta1/stub.go

    	return true
    }
    
    // NewDevicePluginStub returns an initialized DevicePlugin Stub.
    func NewDevicePluginStub(devs []*pluginapi.Device, socket string, name string, preStartContainerFlag bool, getPreferredAllocationFlag bool) *Stub {
    
    	watcher, err := fsnotify.NewWatcher()
    	if err != nil {
    		klog.ErrorS(err, "Watcher creation failed")
    		panic(err)
    	}
    
    	return &Stub{
    		devs:                       devs,
    		socket:                     socket,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 11:19:10 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/asm9.go

    		OPVCC(49, 0, 0, 0), // lfsu
    		OPVCC(50, 0, 0, 0), // lfd
    		OPVCC(51, 0, 0, 0), // lfdu
    		OPVCC(36, 0, 0, 0), // stw
    		OPVCC(37, 0, 0, 0), // stwu
    		OPVCC(38, 0, 0, 0), // stb
    		OPVCC(39, 0, 0, 0), // stbu
    		OPVCC(44, 0, 0, 0), // sth
    		OPVCC(45, 0, 0, 0), // sthu
    		OPVCC(47, 0, 0, 0), // stmw
    		OPVCC(52, 0, 0, 0), // stfs
    		OPVCC(53, 0, 0, 0), // stfsu
    		OPVCC(54, 0, 0, 0), // stfd
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 13:55:28 UTC 2024
    - 156.1K bytes
    - Viewed (0)
  4. tools/istio-iptables/pkg/dependencies/stub.go

    		if quietly {
    			s.ExecutedQuietly = append(s.ExecutedQuietly, cmdline)
    		} else {
    			s.ExecutedNormally = append(s.ExecutedNormally, cmdline)
    		}
    	}
    }
    
    // TODO BML this is more than a stub actually needs to do, we should be able to drop this testing hack
    // and skip writing to a file, but some tests are not *actually* doing unit testing and need this.
    func (s *DependenciesStub) writeAllToDryRunPath() error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 17:46:23 UTC 2024
    - 3.4K bytes
    - Viewed (0)
  5. src/cmd/cgo/internal/test/stubtest_linux_ppc64le.S

    // NOTOC -> TOC [P10]: A PIC call stub using P10 instructions to call the global entry
    // NOTOC -> TOC [P8]:  A PIC call stub using P8 instructions to call the global entry
    //
    // TOC   -> dynamic:              A PLT call stub is generated which saves R2.
    //                                 TOC save slot is rewritten to restore TOC.
    // NOTOC -> dynamic [P10]:        A stub using pcrel instructions is generated.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 22 15:06:17 UTC 2023
    - 3.7K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/groovy/maven-repository-stub/src/main/groovy/maven-repository-stub.gradle

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 330 bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/samples/credentials-handling/publishing-credentials/kotlin/maven-repository-stub/src/main/kotlin/maven-repository-stub.gradle.kts

    Laura Kassovic <******@****.***> 1701107622 -0800
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 332 bytes
    - Viewed (0)
  8. src/cmd/link/internal/ppc64/asm.go

    				stub.AddUint32(ctxt.Arch, OP_MFLR_R0)  // mflr r0
    				stub.AddUint32(ctxt.Arch, OP_BCL_NIA)  // bcl 20,31,1f
    				stub.AddUint32(ctxt.Arch, OP_MFLR_R12) // 1: mflr r12  (r12 is the address of this instruction)
    				stub.AddUint32(ctxt.Arch, OP_MTLR_R0)  // mtlr r0
    				stub.AddSymRef(ctxt.Arch, r.Sym(), r.Add()+8, objabi.R_ADDRPOWER_PCREL, 8)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 19 20:54:08 UTC 2024
    - 63.7K bytes
    - Viewed (0)
  9. platforms/core-runtime/launcher/src/test/groovy/org/gradle/launcher/daemon/client/DaemonClientTest.groovy

            def resultMessage = Stub(BuildActionResult)
            DaemonClientConnection connection2 = Mock()
    
            when:
            client.execute(Stub(BuildAction), Stub(BuildActionParameters), Stub(ClientBuildRequestContext))
    
            then:
            2 * connector.connect(compatibilitySpec) >>> [connection, connection2]
            _ * connection.daemon >> Stub(DaemonConnectDetails)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 15 19:54:56 UTC 2024
    - 10K bytes
    - Viewed (0)
  10. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/resolveengine/artifact/DefaultVisitedArtifactResultsTest.groovy

        def "strict selection includes selected variant of each node"() {
            def artifacts1 = Stub(ArtifactSet)
            def artifacts2 = Stub(ArtifactSet)
            def variant1Artifacts = Stub(ResolvedArtifactSet)
            def variant2Artifacts = Stub(ResolvedArtifactSet)
    
            def selector = Stub(ArtifactVariantSelector)
    
            given:
            artifacts1.select(selector, _) >> variant1Artifacts
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sun Jan 21 03:08:51 UTC 2024
    - 5.2K bytes
    - Viewed (0)
Back to top