Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 29 for useless3 (0.62 sec)

  1. platforms/jvm/language-java/src/integTest/groovy/org/gradle/jvm/toolchain/JavaToolchainDownloadSpiIntegrationTest.groovy

                                    repository('useless1') {
                                        resolverClass = UselessToolchainResolver1
                                    }
                                    repository('useless2') {
                                        resolverClass = UselessToolchainResolver2
                                    }
                                    repository('useless3') {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 28 10:53:57 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  2. src/os/os_unix_test.go

    	}
    	t.Parallel()
    
    	// Use TempDir() to make sure we're on a local file system,
    	// so that the group ids returned by Getgroups will be allowed
    	// on the file. On NFS, the Getgroups groups are
    	// basically useless.
    	f := newFile("TestChown", t)
    	defer Remove(f.Name())
    	defer f.Close()
    	dir, err := f.Stat()
    	if err != nil {
    		t.Fatalf("stat %s: %s", f.Name(), err)
    	}
    
    	// Can't change uid unless root, but can try
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Sep 18 17:32:43 UTC 2023
    - 11.5K bytes
    - Viewed (0)
  3. src/io/multi_test.go

    // byte) and EOF at once in its Read call.
    type byteAndEOFReader byte
    
    func (b byteAndEOFReader) Read(p []byte) (n int, err error) {
    	if len(p) == 0 {
    		// Read(0 bytes) is useless. We expect no such useless
    		// calls in this test.
    		panic("unexpected call")
    	}
    	p[0] = byte(b)
    	return 1, EOF
    }
    
    // This used to yield bytes forever; issue 16795.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 06 15:49:32 UTC 2022
    - 10K bytes
    - Viewed (0)
  4. test/recover.go

    }
    
    func mustRecoverBody(v1, v2, v3, x interface{}) {
    	v := v1
    	if v != nil {
    		println("spurious recover", v)
    		die()
    	}
    	v = v2
    	if v == nil {
    		println("missing recover", x.(int))
    		die() // panic is useless here
    	}
    	if v != x {
    		println("wrong value", v, x)
    		die()
    	}
    
    	// the value should be gone now regardless
    	v = v3
    	if v != nil {
    		println("recover didn't recover")
    		die()
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 02 13:43:18 UTC 2016
    - 10.6K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/apf_controller.go

    	if plState == nil {
    		klog.V(7).Infof("plName=%s, plState==nil", plName)
    		return
    	}
    	useless := plState.quiescing && plState.numPending == 0 && plState.queues.IsIdle()
    	klog.V(7).Infof("plState.quiescing=%v, plState.numPending=%d, useless=%v", plState.quiescing, plState.numPending, useless)
    	if !useless {
    		return
    	}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 48.8K bytes
    - Viewed (0)
  6. tools/istio-iptables/pkg/dependencies/implementation_linux.go

    			return fmt.Errorf("failed to remount /: %v", err)
    		}
    		// In CNI, we are running the pod network namespace, but the host filesystem. Locking the host is both useless and harmful,
    		// as it opens the risk of lock contention with other node actors (such as kube-proxy), and isn't actually needed at all.
    		// Older iptables cannot turn off the lock explicitly, so we hack around it...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Mar 12 20:49:10 UTC 2024
    - 12K bytes
    - Viewed (0)
  7. src/cmd/compile/internal/ssa/deadstore.go

    		// mapping the ID of the address to a shadowRange where future writes will happen.
    		// Since we're walking backwards, writes to a shadowed region are useless,
    		// as they will be immediately overwritten.
    		shadowed.clear()
    		v := last
    
    	walkloop:
    		if loadUse.contains(v.ID) {
    			// Someone might be reading this memory state.
    			// Clear all shadowed addresses.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 25 20:07:26 UTC 2024
    - 11K bytes
    - Viewed (0)
  8. src/net/cgo_unix.go

    		return nil, errors.New("res_ninit failure: " + err.Error())
    	}
    	defer _C_res_nclose(state)
    
    	// Some res_nsearch implementations (like macOS) do not set errno.
    	// They set h_errno, which is not per-thread and useless to us.
    	// res_nsearch returns the size of the DNS response packet.
    	// But if the DNS response packet contains failure-like response codes,
    	// res_search returns -1 even though it has copied the packet into buf,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 14 18:23:45 UTC 2024
    - 11.4K bytes
    - Viewed (0)
  9. cmd/kubeadm/app/phases/upgrade/compute.go

    		// latest-1.7 version is v1.7.4-beta.0
    
    		// Worth noticing is that when the release-1.X branch is cut; there are two versions tagged: v1.X.0-beta.0 AND v1.(X+1).alpha.0
    		// The v1.(X+1).alpha.0 is pretty much useless and should just be ignored, as more betas may be released that have more features than the initial v1.(X+1).alpha.0
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sun Mar 03 03:03:29 UTC 2024
    - 14.3K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/ssa/branchelim.go

    		return false
    	}
    
    	// Pick some upper bound for the number of instructions
    	// we'd be willing to execute just to generate a dead
    	// argument to CondSelect. In the worst case, this is
    	// the number of useless instructions executed.
    	const maxfuseinsts = 2
    
    	if len(simple.Values) > maxfuseinsts || !canSpeculativelyExecute(simple) {
    		return false
    	}
    
    	// Replace Phi instructions in b with CondSelect instructions
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Nov 30 17:46:51 UTC 2022
    - 12.7K bytes
    - Viewed (0)
Back to top