Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 567 for NOR (0.03 sec)

  1. src/go/doc/comment/testdata/link2.txt

    -- input --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- gofmt --
    The Go home page is https://go.dev/.
    It used to be https://golang.org.
    https:// is not a link.
    Nor is https://
    https://☺ is not a link.
    https://:80 is not a link.
    
    -- text --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 11 16:31:45 UTC 2022
    - 997 bytes
    - Viewed (0)
  2. maven-artifact/src/main/java/org/apache/maven/artifact/ArtifactUtils.java

        }
    
        public static String key(String groupId, String artifactId, String version) {
            notBlank(groupId, "groupId can neither be null, empty nor blank");
            notBlank(artifactId, "artifactId can neither be null, empty nor blank");
            notBlank(version, "version can neither be null, empty nor blank");
    
            return groupId + ":" + artifactId + ":" + version;
        }
    
        private static void notBlank(String str, String message) {
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 06 08:51:18 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  3. maven-api-impl/src/test/java/org/apache/maven/internal/impl/model/MavenModelMergerTest.java

    import static org.junit.jupiter.api.Assertions.assertNull;
    
    class MavenModelMergerTest {
        private MavenModelMerger modelMerger = new MavenModelMerger();
    
        // modelVersion is neither inherited nor injected
        @Test
        void testMergeModel_ModelVersion() {
            Model parent = Model.newBuilder().modelVersion("4.0.0").build();
            Model model = Model.newInstance();
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Apr 12 10:50:18 UTC 2024
    - 4.3K bytes
    - Viewed (0)
  4. src/cmd/go/testdata/script/mod_retract.txt

    # 'go list pkg' does not report an error when a retracted version is used.
    go list -e -f '{{if .Error}}{{.Error}}{{end}}' ./use
    ! stdout .
    cmp go.mod go.mod.orig
    
    # Nor does 'go build'.
    [!short] go build ./use
    [!short] ! stderr .
    [!short] cmp go.mod go.mod.orig
    
    # Neither 'go list' nor 'go build' should download go.mod from the version
    # that would list retractions.
    exists $GOPATH/pkg/mod/cache/download/example.com/retract/@v/v1.0.0-bad.mod
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 28 17:19:14 UTC 2021
    - 1.4K bytes
    - Viewed (0)
  5. src/internal/zstd/testdata/1890a371.gettysburg.txt-100x.zst

    But, in a larger sense, we can not dedicate - we can not consecrate - we can not hallow - this ground. The brave men, living and dead, who struggled here, have consecrated it, far above our poor power to add or detract. The world will little note, nor long remember what we say here, but it can never forget what they did here. It is for us the living, rather, to be dedicated here to the unfinished work which they who fought here have thus far so nobly advanced. It is rather for us to be here dedicated...
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Sep 27 14:35:13 UTC 2023
    - 826 bytes
    - Viewed (0)
  6. src/os/sticky_bsd.go

    // license that can be found in the LICENSE file.
    
    //go:build aix || darwin || dragonfly || freebsd || (js && wasm) || netbsd || openbsd || solaris || wasip1
    
    package os
    
    // According to sticky(8), neither open(2) nor mkdir(2) will create
    // a file with the sticky bit set.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 425 bytes
    - Viewed (0)
  7. src/os/pipe_wasm.go

    package os
    
    import "syscall"
    
    // Pipe returns a connected pair of Files; reads from r return bytes written to w.
    // It returns the files and an error, if any.
    func Pipe() (r *File, w *File, err error) {
    	// Neither GOOS=js nor GOOS=wasip1 have pipes.
    	return nil, nil, NewSyscallError("pipe", syscall.ENOSYS)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Apr 07 23:34:21 UTC 2023
    - 488 bytes
    - Viewed (0)
  8. cmd/kubeadm/app/discovery/discovery.go

    	if kubeconfigutil.HasAuthenticationCredentials(config) {
    		return config, nil
    	}
    
    	// if there are no authentication credentials (nor in the config returned from discovery, nor in the TLSBootstrapToken), fail
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Jan 14 13:07:56 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/tests/mlir2flatbuffer/disable_custom.mlir

    // RUN: not flatbuffer_translate -mlir-to-tflite-flatbuffer %s 2>&1 | FileCheck %s
    
    // CHECK: error: 'tf.MyCustomOp' op is neither a custom op nor a flex op
    // CHECK: error: failed while converting: 'main'
    // CHECK: Some ops in the model are custom ops, See instructions to implement
    // CHECK: tf.MyCustomOp(tensor<4xf32>, tensor<4xf32>) -> (tensor<4xf32>, tensor<3xf32>) : {name = "MyCustomOp"}
    
    func.func @main(tensor<4xf32>) -> tensor<4xf32> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Mar 24 07:31:32 UTC 2022
    - 938 bytes
    - Viewed (0)
  10. src/cmd/compile/internal/test/testdata/ctl_test.go

    // Use of this source code is governed by a BSD-style
    // license that can be found in the LICENSE file.
    
    // Test control flow
    
    package main
    
    import "testing"
    
    // nor_ssa calculates NOR(a, b).
    // It is implemented in a way that generates
    // phi control values.
    func nor_ssa(a, b bool) bool {
    	var c bool
    	if a {
    		c = true
    	}
    	if b {
    		c = true
    	}
    	if c {
    		return false
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Dec 14 17:22:18 UTC 2023
    - 2.3K bytes
    - Viewed (0)
Back to top