Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 1,189 for former (0.14 sec)

  1. src/cmd/vendor/golang.org/x/text/language/parse.go

    // than once, the latter will overwrite the former. Variants and Extensions are
    // accumulated, but if two extensions of the same type are passed, the latter
    // will replace the former. For -u extensions, though, the key-type pairs are
    // added, where later values overwrite older ones. A Tag overwrites all former
    // values and typically only makes sense as the first argument. The resulting
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.5K bytes
    - Viewed (0)
  2. guava/src/com/google/common/graph/NetworkConnections.java

      /**
       * Remove {@code edge} from the set of incoming edges. Returns the former predecessor node.
       *
       * <p>In the undirected case, returns {@code null} if {@code isSelfLoop} is true.
       */
      @CanIgnoreReturnValue
      @CheckForNull
      N removeInEdge(E edge, boolean isSelfLoop);
    
      /** Remove {@code edge} from the set of outgoing edges. Returns the former successor node. */
      @CanIgnoreReturnValue
      N removeOutEdge(E edge);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/graph/NetworkConnections.java

      /**
       * Remove {@code edge} from the set of incoming edges. Returns the former predecessor node.
       *
       * <p>In the undirected case, returns {@code null} if {@code isSelfLoop} is true.
       */
      @CanIgnoreReturnValue
      @CheckForNull
      N removeInEdge(E edge, boolean isSelfLoop);
    
      /** Remove {@code edge} from the set of outgoing edges. Returns the former successor node. */
      @CanIgnoreReturnValue
      N removeOutEdge(E edge);
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 26 17:43:39 UTC 2021
    - 2.3K bytes
    - Viewed (0)
  4. releasenotes/notes/28269.yaml

    - |
      **Fixed** when a node has multiple IP addresses (e.g., a VM in the mesh expansion scenario),
      Istio Proxy will now bind `inbound` listeners to the first applicable address in the list
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Oct 26 14:40:31 UTC 2020
    - 354 bytes
    - Viewed (0)
  5. releasenotes/notes/27771.yaml

      Install-cni will now remove existing istio-cni plugins from the CNI config
      before inserting istio-cni plugin configuration (new behaviour)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Oct 27 16:33:23 UTC 2020
    - 399 bytes
    - Viewed (0)
  6. src/cmd/go/testdata/script/vendor_issue12156.txt

    # Tests issue #12156, a former index out of range panic.
    
    env GO111MODULE=off
    env GOPATH=$WORK/gopath/src/testvendor2 # vendor/x is directly in $GOPATH, not in $GOPATH/src
    cd $WORK/gopath/src/testvendor2/src/p
    
    ! go build p.go
    ! stderr panic # Make sure it doesn't panic
    stderr 'cannot find package "x"'
    
    -- testvendor2/src/p/p.go --
    package p
    
    import "x"
    -- testvendor2/vendor/x/x.go --
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Sep 17 13:25:29 UTC 2020
    - 398 bytes
    - Viewed (0)
  7. src/errors/errors.go

    // (pre-order, depth-first traversal).
    //
    // [Is] examines the tree of its first argument looking for an error that
    // matches the second. It reports whether it finds a match. It should be
    // used in preference to simple equality checks:
    //
    //	if errors.Is(err, fs.ErrExist)
    //
    // is preferable to
    //
    //	if err == fs.ErrExist
    //
    // because the former will succeed if err wraps [io/fs.ErrExist].
    //
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Nov 02 19:45:41 UTC 2023
    - 2.9K bytes
    - Viewed (0)
  8. platforms/jvm/testing-jvm-infrastructure/src/main/java/org/gradle/api/internal/tasks/testing/testng/TestNGConfigurationListener.java

     * org.testng.internal.IConfigurationListener (from TestNG &lt; 6.2) or
     * org.testng.IConfigurationListener2 (from TestNG &gt;= 6.2). Became
     * necessary because TestNG 6.2 changed the package name of the former
     * interface from org.testng.internal to org.testng.
     *
     * @see TestNGListenerAdapterFactory
     */
    public interface TestNGConfigurationListener {
        /**
         * Invoked whenever a configuration method succeeded.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Sep 18 20:52:40 UTC 2023
    - 1.7K bytes
    - Viewed (0)
  9. src/cmd/go/testdata/script/mod_tidy_lazy_self.txt

    # irrelevant. It should be pruned out; when the import of "example.net/x" is
    # later resolved, it should resolve at the latest version (v0.2.0), not the
    # version implied by the (former) misleading requirement on the older version of
    # the main module.
    
    cmp go.mod go.mod.tidy
    
    
    -- go.mod --
    module golang.org/issue/46078
    
    go 1.17
    
    replace (
    	example.net/x v0.1.0 => ./x
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 09 20:06:35 UTC 2021
    - 1.5K bytes
    - Viewed (0)
  10. test/fixedbugs/bug120.go

    	// "x" = the floating point value from converting the string x.
    	// These are exactly representable in 64-bit floating point:
    	//	1e23-8388608
    	//	1e23+8388608
    	// The former has an even mantissa, so "1e23" rounds to 1e23-8388608.
    	// If "1e23+8388608" is implemented as "1e23" + "8388608",
    	// that ends up computing 1e23-8388608 + 8388608 = 1e23,
    	// which rounds back to 1e23-8388608.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Feb 18 21:15:42 UTC 2012
    - 1.8K bytes
    - Viewed (0)
Back to top