Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 837 for abde (0.15 sec)

  1. src/vendor/golang.org/x/crypto/internal/poly1305/sum_ppc64le.s

    	MOVD $1, t2;     \
    	ADDC t0, h0, h0; \
    	ADDE t1, h1, h1; \
    	ADDE t2, h2;     \
    	ADD  $16, msg
    
    #define POLY1305_MUL(h0, h1, h2, r0, r1, t0, t1, t2, t3, t4, t5) \
    	MULLD  r0, h0, t0;  \
    	MULHDU r0, h0, t1;  \
    	MULLD  r0, h1, t4;  \
    	MULHDU r0, h1, t5;  \
    	ADDC   t4, t1, t1;  \
    	MULLD  r0, h2, t2;  \
    	MULHDU r1, h0, t4;  \
    	MULLD  r1, h0, h0;  \
    	ADDE   t5, t2, t2;  \
    	ADDC   h0, t1, t1;  \
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Mar 09 00:09:40 UTC 2024
    - 3.2K bytes
    - Viewed (0)
  2. src/internal/trace/order_test.go

    				t.Fatalf("check %q: expected to be able to pop after %d pops", name, i+1)
    			} else if got != want {
    				t.Fatalf("check %q: expected value %d after on pop %d, got %d", name, want, i+1, got)
    			}
    		}
    		if _, ok := q.pop(); ok {
    			t.Fatalf("check %q: did not expect to be able to pop more values", name)
    		}
    		if _, ok := q.pop(); ok {
    			t.Fatalf("check %q: did not expect to be able to pop more values a second time", name)
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 1K bytes
    - Viewed (0)
  3. src/cmd/internal/obj/ppc64/a.out.go

    	AANDCC
    	AANDN
    	AANDNCC
    	AANDISCC
    	ABC
    	ABCL
    	ABEQ
    	ABGE // not LT = G/E/U
    	ABGT
    	ABLE // not GT = L/E/U
    	ABLT
    	ABNE  // not EQ = L/G/U
    	ABVC  // Branch if float not unordered (also branch on not summary overflow)
    	ABVS  // Branch if float unordered (also branch on summary overflow)
    	ABDNZ // Decrement CTR, and branch if CTR != 0
    	ABDZ  // Decrement CTR, and branch if CTR == 0
    	ACMP
    	ACMPU
    	ACMPEQB
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 01 18:50:29 UTC 2024
    - 16K bytes
    - Viewed (0)
  4. src/cmd/asm/internal/arch/arm.go

    		return true
    	}
    	return false
    }
    
    var bcode = []obj.As{
    	arm.ABEQ,
    	arm.ABNE,
    	arm.ABCS,
    	arm.ABCC,
    	arm.ABMI,
    	arm.ABPL,
    	arm.ABVS,
    	arm.ABVC,
    	arm.ABHI,
    	arm.ABLS,
    	arm.ABGE,
    	arm.ABLT,
    	arm.ABGT,
    	arm.ABLE,
    	arm.AB,
    	obj.ANOP,
    }
    
    // ARMConditionCodes handles the special condition code situation for the ARM.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 6.1K bytes
    - Viewed (0)
  5. docs/en/docs/how-to/custom-docs-ui-assets.md

        If you integrate your API with an OAuth2 provider, you will be able to authenticate and come back to the API docs with the acquired credentials. And interact with it using the real OAuth2 authentication.
    
        Swagger UI will handle it behind the scenes for you, but it needs this "redirect" helper.
    
    ### Create a *path operation* to test it
    
    Now, to be able to test that everything works, create a *path operation*:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu May 23 22:59:02 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/file/PathToFileResolver.java

     * limitations under the License.
     */
    
    package org.gradle.internal.file;
    
    import java.io.File;
    
    /**
     * Resolves some path object to a `File`. May or may not be able to resolve relative paths.
     */
    public interface PathToFileResolver {
        /**
         * Resolves the given path to a file.
         */
        File resolve(Object path);
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Sep 22 08:48:02 UTC 2023
    - 1.2K bytes
    - Viewed (0)
  7. src/cmd/go/testdata/script/gopath_local.txt

    go build testdata/local/easy.go
    exec ./easy$GOEXE
    stdout '^easysub\.Hello'
    
    # Ignored files should be able to import the package built from
    # non-ignored files in the same directory.
    go build -o easysub$GOEXE testdata/local/easysub/main.go
    exec ./easysub$GOEXE
    stdout '^easysub\.Hello'
    
    # Files in relative-imported packages should be able to
    # use relative imports themselves.
    go build testdata/local/hard.go
    exec ./hard$GOEXE
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Oct 24 21:26:10 UTC 2022
    - 2.9K bytes
    - Viewed (0)
  8. samples/external/README.md

    ServiceEntries are misconfigured pods may see problems with server names.
    
    ## Try it out
    
    After an operator runs `kubectl create -f aptget.yaml` pods will be able to
    succeed with `apt-get update` and `apt-get install`.
    
    After an operator runs `kubectl create -f github.yaml` pods will be able to
    succeed with `git clone https://github.com/fortio/fortio.git`.
    
    Running `kubectl create -f pypi.yaml` allows pods to update Python libraries using `pip`.
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jul 27 18:28:55 UTC 2023
    - 1.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm64/a.out.go

    	AANDSW
    	AANDW
    	AASR
    	AASRW
    	AAT
    	ABCC
    	ABCS
    	ABEQ
    	ABFI
    	ABFIW
    	ABFM
    	ABFMW
    	ABFXIL
    	ABFXILW
    	ABGE
    	ABGT
    	ABHI
    	ABHS
    	ABIC
    	ABICS
    	ABICSW
    	ABICW
    	ABLE
    	ABLO
    	ABLS
    	ABLT
    	ABMI
    	ABNE
    	ABPL
    	ABRK
    	ABVC
    	ABVS
    	ACASAD
    	ACASALB
    	ACASALD
    	ACASALH
    	ACASALW
    	ACASAW
    	ACASB
    	ACASD
    	ACASH
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  10. docs/en/docs/advanced/advanced-dependencies.md

    All the dependencies we have seen are a fixed function or class.
    
    But there could be cases where you want to be able to set parameters on the dependency, without having to declare many different functions or classes.
    
    Let's imagine that we want to have a dependency that checks if the query parameter `q` contains some fixed content.
    
    But we want to be able to parameterize that fixed content.
    
    ## A "callable" instance
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Tue Oct 17 05:59:11 UTC 2023
    - 3.9K bytes
    - Viewed (0)
Back to top