Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 528 for DUMMY (0.03 sec)

  1. src/cmd/go/testdata/script/cgo_suspect_flag_force_external.txt

    stderr preferlinkext
    env CGO_CFLAGS=-fplugin
    go build -x -n -o dummy.exe ./usesInternalCgo
    stderr preferlinkext
    env CGO_CFLAGS=-fprofile-instr-generate
    go build -x -n -o dummy.exe ./usesInternalCgo
    stderr preferlinkext
    
    # The -fdebug-prefix-map=path is permitted for internal linking.
    env CGO_CFLAGS=-fdebug-prefix-map=/some/sandbox/execroot/workspace=/tmp/new
    go build -x -n -o dummy.exe ./usesInternalCgo
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 25 18:16:01 UTC 2023
    - 6.3K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/shape_inference_test.cc

        auto enter =
            ops::internal::Enter(scope.WithOpName("while/Enter"), x, "aloop");
        auto dummy = ops::Placeholder(scope.WithOpName("dummy"), DT_RESOURCE);
        auto merge = ops::Merge(scope.WithOpName("while/Merge"),
                                std::initializer_list<Input>{enter, dummy});
        auto false_value = ops::Const<bool>(scope.WithOpName("false"), false);
        auto loop_cond =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 00:41:19 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  3. test/closedchan.go

    	return "(select)"
    }
    
    // indirect operations via larger selects
    var dummy = make(chan bool)
    
    type SSChan chan int
    
    func (c SSChan) Send(x int) {
    	select {
    	case c <- x:
    	case <-dummy:
    	}
    }
    
    func (c SSChan) Nbsend(x int) bool {
    	select {
    	default:
    		return false
    	case <-dummy:
    	case c <- x:
    		return true
    	}
    	panic("nbsend")
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 17 04:48:57 UTC 2012
    - 5.8K bytes
    - Viewed (0)
  4. guava/src/com/google/common/collect/ImmutableMultisetGwtSerializationDependencies.java

     * tries to refer to our dummy serializer for the superclass,
     * ImmutableMultiset_CustomFieldSerializer. But that type has no methods (since it's never actually
     * used). We could probably fix the problem by adding dummy methods to that class, but that is
     * starting to sound harder than taking the superclass approach, which I've been coming to like,
     * anyway, since it doesn't require us to declare dummy methods (though occasionally constructors)
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Jun 01 22:07:10 UTC 2021
    - 1.9K bytes
    - Viewed (0)
  5. maven-core/src/test/resources-project-builder/empty-distMng-repo-url/pom.xml

      <groupId>org.apache.commons</groupId>
      <artifactId>commons-parent</artifactId>
      <packaging>pom</packaging>
      <version>11</version>
    
      <distributionManagement>
        <repository>
          <id>dummy</id>
          <name>Dummy to avoid accidental deploys</name>
          <url />
        </repository>
      </distributionManagement>
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Wed Apr 29 05:20:38 UTC 2009
    - 373 bytes
    - Viewed (0)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/build/BuildTestFixture.groovy

            rootMulti.file("src/main/${language.name}/Dummy.${language.name}") << "public class Dummy {}"
            subprojects.each {
                rootMulti.file(it.replace(':' as char, File.separatorChar), "src/main/${language.name}/Dummy.${language.name}") << "public class Dummy {}"
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 4.6K bytes
    - Viewed (0)
  7. pkg/proxy/ipvs/netlink_linux.go

    		_, ok := err.(netlink.LinkNotFoundError)
    		if ok {
    			return nil
    		}
    		return fmt.Errorf("error deleting a non-exist dummy device: %s, %v", devName, err)
    	}
    	dummy, ok := link.(*netlink.Dummy)
    	if !ok {
    		return fmt.Errorf("expect dummy device, got device type: %s", link.Type())
    	}
    	return h.LinkDel(dummy)
    }
    
    // ListBindAddress will list all IP addresses which are bound in a given interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 30 16:18:49 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. test/nilptr.go

    var dummy [256 << 20]byte // give us a big address space
    
    func main() {
    	// the test only tests what we intend to test
    	// if dummy starts in the first 256 MB of memory.
    	// otherwise there might not be anything mapped
    	// at the address that might be accidentally
    	// dereferenced below.
    	if uintptr(unsafe.Pointer(&dummy)) > 256<<20 {
    		panic("dummy too far out")
    	}
    
    	shouldPanic(p1)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 19 23:33:25 UTC 2023
    - 3.2K bytes
    - Viewed (0)
  9. src/net/interface_linux_test.go

    		Args: []string{"ip", "link", "delete", ti.name, "type", "dummy"},
    	})
    	return nil
    }
    
    func (ti *testInterface) setLinkLocal(suffix int) error {
    	ti.name = fmt.Sprintf("gotest%d", suffix)
    	xname, err := exec.LookPath("ip")
    	if err != nil {
    		return err
    	}
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    		Path: xname,
    		Args: []string{"ip", "link", "add", ti.name, "type", "dummy"},
    	})
    	ti.setupCmds = append(ti.setupCmds, &exec.Cmd{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Nov 06 00:05:32 UTC 2018
    - 3.7K bytes
    - Viewed (0)
  10. src/cmd/go/testdata/script/work_init_gowork.txt

    ! exists foo/foo.work
    go work init
    exists foo/foo.work
    
    env GOWORK=
    cd foo/bar
    ! go work init
    stderr 'already exists'
    
    # Create directories to make go.work files in.
    -- foo/dummy.txt --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Feb 16 15:58:47 UTC 2022
    - 367 bytes
    - Viewed (0)
Back to top