Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 743 for dumpms (0.13 sec)

  1. 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)
  2. 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)
  3. 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)
  4. pkg/test/framework/components/echo/kube/testdata/disable-automount-sa.yaml

          imagePullSecrets:
          - name: myregistrykey
          containers:
          - name: istio-proxy
            image: auto
            imagePullPolicy: Always
            securityContext: # to allow core dumps
              readOnlyRootFilesystem: false
          - name: app
            image: testing.hub/app:latest
            imagePullPolicy: Always
            args:
              - --metrics=15014
              - --cluster=cluster-0
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 17 04:28:06 UTC 2023
    - 2.2K bytes
    - Viewed (0)
  5. 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)
  6. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/timeout/IntegrationTestTimeoutInterceptor.groovy

            try {
                super.intercept(invocation)
            } catch (SpockTimeoutError e) {
                String threadDumpFile = getThreadDump()
                throw new SpockAssertionError("Timeout, see thread dumps at $threadDumpFile", e)
            } catch (Throwable t) {
                throw t
            }
        }
    
        void intercept(Action<Void> action) {
            MethodInfo methodInfo = new MethodInfo()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 2.5K bytes
    - Viewed (1)
  7. 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)
  8. src/mdo/model-version.vm

                                #set ( $fields = $LinkedHashSet.newInstance() )
                                #set ( $dummy = $classToFields.put( $class, $fields ) )
                            #end
                            #set( $dummy = $fields.add($field) )
                            #if ( $dummy )
                            #end
                        #end
                    #end
                #end
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Mon Oct 16 13:44:33 UTC 2023
    - 7.4K bytes
    - Viewed (0)
  9. 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)
  10. android/guava-tests/benchmark/com/google/common/cache/ChainBenchmark.java

      }
    
      @SuppressWarnings("GuardedBy")
      @Benchmark
      int time(int reps) {
        int dummy = 0;
        for (int i = 0; i < reps; i++) {
          // TODO(b/145386688): This access should be guarded by 'this.segment', which is not currently
          // held
          segment.removeEntryFromChain(chain, head);
          dummy += segment.count;
        }
        return dummy;
      }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 15:19:38 UTC 2023
    - 2.1K bytes
    - Viewed (0)
Back to top