Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 207 for LA (0.04 sec)

  1. src/internal/bytealg/indexbyte_s390x.s

    	ADD	R3, R4, R8      // the address after the end of the string
    	//if the length is small, use loop; otherwise, use vector or srst search
    	CMPBGE	R4, $16, large
    
    residual:
    	CMPBEQ	R3, R8, notfound
    	MOVBZ	0(R3), R7
    	LA	1(R3), R3
    	CMPBNE	R7, R5, residual
    
    found:
    	SUB	R6, R3
    	SUB	$1, R3
    	MOVD	R3, 0(R2)
    	RET
    
    notfound:
    	MOVD	$-1, 0(R2)
    	RET
    
    large:
    	MOVBZ	internal∕cpu·S390X+const_offsetS390xHasVX(SB), R1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 08 20:52:47 UTC 2018
    - 2.5K bytes
    - Viewed (0)
  2. src/net/iprawsock_test.go

    			// May be inside a container that disallows creating a socket.
    			t.Logf("skipping %s test: %v", tt.net, err)
    			continue
    		} else if err != nil {
    			t.Fatal(err)
    		}
    		defer c.Close()
    		if la := c.LocalAddr(); la == nil {
    			t.Fatal("should not fail")
    		}
    	}
    }
    
    func TestIPConnRemoteName(t *testing.T) {
    	network := "ip:tcp"
    	if !testableNetwork(network) {
    		t.Skipf("skipping %s test", network)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 6K bytes
    - Viewed (0)
  3. platforms/documentation/docs/src/snippets/providers/services/kotlin/build.gradle.kts

                commandLine("ls", "-la")
            }
        }
    }
    // end::exec-op[]
    
    // tag::exec-op-inject[]
    abstract class MyExecOperationsTask
    @Inject constructor(private var execOperations: ExecOperations) : DefaultTask() {
    
        @TaskAction
        fun doTaskAction() {
            execOperations.exec {
                commandLine("ls", "-la")
            }
        }
    }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  4. src/net/ipsock_plan9.go

    	}
    	f, dest, proto, name, err := startPlan9(ctx, net, raddr)
    	if err != nil {
    		return nil, err
    	}
    	if la := plan9LocalAddr(laddr); la == "" {
    		err = hangupCtlWrite(ctx, proto, f, "connect "+dest)
    	} else {
    		err = hangupCtlWrite(ctx, proto, f, "connect "+dest+" "+la)
    	}
    	if err != nil {
    		f.Close()
    		return nil, err
    	}
    	data, err := os.OpenFile(netdir+"/"+proto+"/"+name+"/data", os.O_RDWR, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 20:38:53 UTC 2023
    - 7.5K bytes
    - Viewed (0)
  5. src/main/resources/fess_indices/fess/gl/stopwords.txt

    elas
    eles
    en
    era
    eran
    esa
    esas
    ese
    eses
    esta
    estar
    estaba
    está
    están
    este
    estes
    estiven
    estou
    eu
    é
    facer
    foi
    foron
    fun
    había
    hai
    iso
    isto
    la
    las
    lle
    lles
    lo
    los
    mais
    me
    meu
    meus
    min
    miña
    miñas
    moi
    na
    nas
    neste
    nin
    no
    non
    nos
    nosa
    nosas
    noso
    nosos
    nós
    nun
    nunha
    nuns
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Jul 19 06:31:02 UTC 2018
    - 932 bytes
    - Viewed (0)
  6. src/net/listen_test.go

    		return err
    	} else if !ok {
    		return fmt.Errorf("%s not found in multicast rib", ip.String())
    	}
    	la := c.LocalAddr()
    	if la, ok := la.(*UDPAddr); !ok || la.Port == 0 {
    		return fmt.Errorf("got %v; want a proper address with non-zero port number", la)
    	}
    	return nil
    }
    
    func multicastRIBContains(ip IP) (bool, error) {
    	switch runtime.GOOS {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:20:52 UTC 2023
    - 20.5K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/providers/services/groovy/build.gradle

    // end::archive-op-inject[]
    
    // tag::exec-op[]
    tasks.register('runCommand') {
        doLast {
            exec { // short for project.exec
                commandLine 'ls', '-la'
            }
        }
    }
    // end::exec-op[]
    
    // tag::exec-op-inject[]
    abstract class MyExecOperationsTask extends DefaultTask {
        private ExecOperations execOperations
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 17 18:14:15 UTC 2024
    - 6.9K bytes
    - Viewed (0)
  8. src/runtime/cgo/gcc_s390x.S

    	ld      %f9, 8(%r15)
    	ld      %f10, 16(%r15)
    	ld      %f11, 24(%r15)
    	ld      %f12, 32(%r15)
    	ld      %f13, 40(%r15)
    	ld      %f14, 48(%r15)
    	ld      %f15, 56(%r15)
    
    	/* de-allocate stack frame */
    	la      %r15, 64(%r15)
    
    	/* restore general purpose registers */
    	lmg     %r6, %r15, 48(%r15)
    
    	br      %r14 /* restored by lmg */
    
    #ifdef __ELF__
    .section .note.GNU-stack,"",%progbits
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Dec 05 16:41:48 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  9. src/main/resources/fess_indices/fess/fr/stopwords.txt

    au
    aux
    avec
    ce
    ces
    dans
    de
    des
    du
    elle
    en
    et
    eux
    il
    je
    la
    le
    leur
    lui
    ma
    mais
    me
    même
    mes
    moi
    mon
    ne
    nos
    notre
    nous
    on
    ou
    par
    pas
    pour
    qu
    que
    qui
    sa
    se
    ses
    son
    sur
    ta
    te
    tes
    toi
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Mon Nov 27 12:59:36 UTC 2023
    - 977 bytes
    - Viewed (0)
  10. docs/pt/docs/help-fastapi.md

    ## Patrocine o autor
    
    Você também pode ajudar o autor financeiramente (eu) através do <a href="https://github.com/sponsors/tiangolo" class="external-link" target="_blank">GitHub sponsors</a>.
    
     você pode me pagar um cafézinho ☕️ como agradecimento. 😄
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 8.4K bytes
    - Viewed (0)
Back to top