Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 13 for sally (0.18 sec)

  1. guava-tests/test/com/google/common/base/OptionalTest.java

      }
    
      @SuppressWarnings("unused") // compilation test
      public void testSampleCodeFine2() {
        FluentIterable<? extends Number> numbers = getSomeNumbers();
    
        // Sadly, the following is what users will have to do in some circumstances.
    
        @SuppressWarnings("unchecked") // safe covariant cast
        Optional<Number> first = (Optional<Number>) numbers.first();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Wed Feb 21 18:32:41 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. pkg/util/iptables/iptables.go

    	out, err := runner.exec.Command(iptablesSaveCmd, "-t", string(table)).CombinedOutput()
    	if err != nil {
    		return false, fmt.Errorf("error checking rule: %v", err)
    	}
    
    	// Sadly, iptables has inconsistent quoting rules for comments. Just remove all quotes.
    	// Also, quoted multi-word comments (which are counted as a single arg)
    	// will be unpacked into multiple args,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Dec 19 01:20:51 UTC 2023
    - 28.6K bytes
    - Viewed (0)
  3. pkg/kube/kclient/client_test.go

    	meshWatcher := mesh.NewTestWatcher(&meshconfig.MeshConfig{DiscoverySelectors: []*meshconfig.LabelSelector{{
    		MatchLabels: map[string]string{"kubernetes.io/metadata.name": "selected"},
    	}}})
    	// Note: it is silly to filter cluster scoped resources, but if it is done we should not break.
    	namespaces := kclient.New[*corev1.Namespace](c)
    	discoveryNamespacesFilter := filter.NewDiscoveryNamespacesFilter(
    		namespaces,
    		meshWatcher,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 11 15:12:54 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  4. docs/en/docs/python-types.md

    Then, you try with the old programmer's friend, editor autocompletion.
    
    You type the first parameter of the function, `first_name`, then a dot (`.`) and then hit `Ctrl+Space` to trigger the completion.
    
    But, sadly, you get nothing useful:
    
    <img src="/img/python-types/image01.png">
    
    ### Add types
    
    Let's modify a single line from the previous version.
    
    We will change exactly this fragment, the parameters of the function, from:
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri May 31 02:38:05 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/internal/poll/fd_unix.go

    					continue
    				}
    			}
    		case syscall.ECONNABORTED:
    			// This means that a socket on the listen
    			// queue was closed before we Accept()ed it;
    			// it's a silly error, so try again.
    			continue
    		}
    		return -1, nil, errcall, err
    	}
    }
    
    // Fchmod wraps syscall.Fchmod.
    func (fd *FD) Fchmod(mode uint32) error {
    	if err := fd.incref(); err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  6. platforms/software/maven/src/integTest/groovy/org/gradle/api/publish/maven/AbstractMavenPublishJavaIntegTest.groovy

            def mavenModule = javaLibrary.mavenModule
    
            mavenModule.assertPublished()
            javaLibrary.assertArtifactsPublished()
            mavenModule.parsedPom.scopes['import'] == null
    
            // Sadly this does not take care of the Gradle metadata
        }
    
        def 'can publish java library with a #config dependency on a java-platform subproject"'() {
            given:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 45.6K bytes
    - Viewed (0)
  7. src/cmd/vendor/golang.org/x/tools/go/types/objectpath/objectpath.go

    		return "", fmt.Errorf("no path for %v", obj)
    
    	case *types.Var:
    		// Could be:
    		// - a field (obj.IsField())
    		// - a func parameter or result
    		// - a local var.
    		// Sadly there is no way to distinguish
    		// a param/result from a local
    		// so we must proceed to the find.
    
    	case *types.Func:
    		// A func, if not package-level, must be a method.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 02:20:05 UTC 2024
    - 23.1K bytes
    - Viewed (0)
  8. src/runtime/traceruntime.go

    }
    
    // GoPark emits a GoBlock event with the provided reason.
    //
    // TODO(mknyszek): Replace traceBlockReason with waitReason. It's silly
    // that we have both, and waitReason is way more descriptive.
    func (tl traceLocker) GoPark(reason traceBlockReason, skip int) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  9. src/bufio/bufio.go

    		return 0, b.err
    	}
    	n := b.Available()
    	if n < utf8.UTFMax {
    		if b.Flush(); b.err != nil {
    			return 0, b.err
    		}
    		n = b.Available()
    		if n < utf8.UTFMax {
    			// Can only happen if buffer is silly small.
    			return b.WriteString(string(r))
    		}
    	}
    	size = utf8.EncodeRune(b.buf[b.n:], r)
    	b.n += size
    	return size, nil
    }
    
    // WriteString writes a string.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:08 UTC 2023
    - 21.8K bytes
    - Viewed (0)
  10. src/cmd/vendor/golang.org/x/mod/module/module.go

    		default:
    			panic(fmt.Sprintf("internal error: invalid kind %v", kind))
    		}
    		if !ok {
    			return fmt.Errorf("invalid char %q", r)
    		}
    	}
    
    	// Windows disallows a bunch of path elements, sadly.
    	// See https://docs.microsoft.com/en-us/windows/desktop/fileio/naming-a-file
    	short := elem
    	if i := strings.Index(short, "."); i >= 0 {
    		short = short[:i]
    	}
    	for _, bad := range badWindowsNames {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 09 20:17:07 UTC 2024
    - 26.9K bytes
    - Viewed (0)
Back to top