Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 74 for useless3 (0.13 sec)

  1. build-logic/documentation/src/main/groovy/gradlebuild/docs/dsl/docbook/LinkRenderer.java

                linkElement.appendChild(classNameElement);
                return linkElement;
            }
    
            //this if is a bit cheesy but 1-letter classname surely means a generic type and the warning will be useless
            if (className.length() > 1) {
                listener.warning(String.format("Could not generate link for unknown class '%s'", className));
            }
            Element element = document.createElement("classname");
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Dec 09 08:14:05 UTC 2020
    - 6.3K bytes
    - Viewed (0)
  2. pkg/kubelet/container/sync_result.go

    type SyncResult struct {
    	// The associated action of the result
    	Action SyncAction
    	// The target of the action, now the target can only be:
    	//  * Container: Target should be container name
    	//  * Network: Target is useless now, we just set it as pod full name now
    	Target interface{}
    	// Brief error reason
    	Error error
    	// Human readable error reason
    	Message string
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 19 15:48:08 UTC 2020
    - 4.6K bytes
    - Viewed (0)
  3. src/os/dir_darwin.go

    			continue
    		}
    		name := (*[len(syscall.Dirent{}.Name)]byte)(unsafe.Pointer(&dirent.Name))[:]
    		for i, c := range name {
    			if c == 0 {
    				name = name[:i]
    				break
    			}
    		}
    		// Check for useless names before allocating a string.
    		if string(name) == "." || string(name) == ".." {
    			continue
    		}
    		if mode == readdirName {
    			names = append(names, string(name))
    		} else if mode == readdirDirEntry {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 20:52:06 UTC 2024
    - 3.5K bytes
    - Viewed (0)
  4. src/os/dir_unix.go

    		if !ok || namoff+namlen > uint64(len(rec)) {
    			break
    		}
    		name := rec[namoff : namoff+namlen]
    		for i, c := range name {
    			if c == 0 {
    				name = name[:i]
    				break
    			}
    		}
    		// Check for useless names before allocating a string.
    		if string(name) == "." || string(name) == ".." {
    			continue
    		}
    		if n > 0 { // see 'n == 0' comment above
    			n--
    		}
    		if mode == readdirName {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue May 14 20:11:45 UTC 2024
    - 4.8K bytes
    - Viewed (0)
  5. 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)
  6. src/main/java/jcifs/smb1/util/transport/Transport.java

            try {
                /* We cannot synchronize (run_thread) here or the caller's
                 * thread.wait( timeout ) cannot reaquire the lock and
                 * return which would render the timeout effectively useless.
                 */
                doConnect();
            } catch( Exception ex ) {
                ex0 = ex; // Defer to below where we're locked
                return;
            } finally {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Fri Mar 22 20:39:42 UTC 2019
    - 9K bytes
    - Viewed (0)
  7. pkg/serviceaccount/openidmetadata.go

    	// and since we aren't sure what to put in authorization_endpoint yet,
    	// we will omit this field until someone files a bug.
    	// AuthzEndpoint string   `json:"authorization_endpoint"`                // REQUIRED in OIDC; but useless to relying parties.
    	JWKSURI       string   `json:"jwks_uri"`                              // REQUIRED in OIDC; meaningful to relying parties.
    	ResponseTypes []string `json:"response_types_supported"`              // REQUIRED in OIDC
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Feb 12 00:23:31 UTC 2020
    - 9.4K bytes
    - Viewed (0)
  8. 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)
  9. 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)
  10. 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)
Back to top