Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 162 for tings (0.11 sec)

  1. platforms/software/publish/src/main/java/org/gradle/api/publish/PublishingExtension.java

        /**
         * Configures the publications of this project.
         * <p>
         * The publications container defines the outgoing publications of the project. That is, the consumable representations of things produced
         * by building the project. An example of a publication would be an Ivy Module (i.e. {@code ivy.xml} and artifacts), or
         * Maven Project (i.e. {@code pom.xml} and artifacts).
         * <p>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 12 14:02:46 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  2. src/mime/mediatype.go

    			return "", nil, errors.New("mime: duplicate parameter name")
    		}
    		pmap[key] = value
    		v = rest
    	}
    
    	// Stitch together any continuations or things with stars
    	// (i.e. RFC 2231 things with stars: "foo*0" or "foo*")
    	var buf strings.Builder
    	for key, pieceMap := range continuation {
    		singlePartKey := key + "*"
    		if v, ok := pieceMap[singlePartKey]; ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  3. pilot/pkg/features/tuning.go

    		"The delay added to config/registry events for debouncing. This will delay the push by "+
    			"at least this interval. If no change is detected within this period, the push will happen, "+
    			" otherwise we'll keep delaying until things settle, up to a max of PILOT_DEBOUNCE_MAX.",
    	).Get()
    
    	DebounceMax = env.Register(
    		"PILOT_DEBOUNCE_MAX",
    		10*time.Second,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Mar 06 04:22:19 UTC 2024
    - 4.8K bytes
    - Viewed (1)
  4. android/guava/src/com/google/common/base/SmallCharMatcher.java

        return 1 == (1 & (filter >> c));
      }
    
      // This is all essentially copied from ImmutableSet, but we have to duplicate because
      // of dependencies.
    
      // Represents how tightly we can pack things, as a maximum.
      private static final double DESIRED_LOAD_FACTOR = 0.5;
    
      /**
       * Returns an array size suitable for the backing array of a hash table that uses open addressing
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Feb 09 15:49:48 UTC 2024
    - 4.5K bytes
    - Viewed (0)
  5. src/cmd/go/go_unix_test.go

    	r := bufio.NewReader(pipe)
    	line, err := r.ReadString('\n')
    	if err != nil {
    		t.Fatal(err)
    	}
    	stdout.WriteString(line)
    
    	// The output line for some test was written, so we know things are in progress.
    	//
    	// Cancel the rest of the run by sending SIGINT to the process group:
    	// it should finish up and exit with a nonzero status,
    	// not have to be killed with SIGKILL.
    	cancel()
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 19 16:17:55 UTC 2023
    - 3.5K bytes
    - Viewed (0)
  6. cni/pkg/ipset/ipset.go

    // and iptables will be smart enough to pick the correct underlying set (v4 or v6, based on context),
    // reducing the # of rules we need.
    //
    // BUT netlink lib doesn't support adding things to `list:set` types yet, and current tagged release
    // doesn't support creating `list:set` types yet (is in main branch tho).
    // So this will actually create 2 underlying ipsets, one for v4 and one for v6
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 22:24:38 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  7. okhttp/src/main/kotlin/okhttp3/internal/http/DateFormatting.kt

            // that. If any of the BROWSER_COMPATIBLE_DATE_FORMAT_STRINGS ended in "'GMT'" we'd have
            // to also check that position.getIndex() == value.length() otherwise parsing might have
            // terminated early, ignoring things like "+01:00". Leaving this as != 0 means that any
            // trailing junk is ignored.
            return result
          }
        }
      }
      return null
    }
    
    /** Returns the string for this date. */
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 4.1K bytes
    - Viewed (0)
  8. src/container/heap/heap.go

    //
    //	!h.Less(j, i) for 0 <= i < h.Len() and 2*i+1 <= j <= 2*i+2 and j < h.Len()
    //
    // Note that [Push] and [Pop] in this interface are for package heap's
    // implementation to call. To add and remove things from the heap,
    // use [heap.Push] and [heap.Pop].
    type Interface interface {
    	sort.Interface
    	Push(x any) // add x as element Len()
    	Pop() any   // remove and return element Len() - 1.
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Oct 12 14:39:10 UTC 2023
    - 3.3K bytes
    - Viewed (0)
  9. platforms/software/publish/src/main/java/org/gradle/api/publish/internal/mapping/VersionMappingComponentDependencyResolver.java

            eachElement(root, Actions.doNothing(), allDependencies::add, new HashSet<>());
    
            // If we reach this point it means we have a dependency which doesn't belong to the resolution result
            // Which can mean two things:
            // 1. the graph used to get the resolved version has nothing to do with the dependencies we're trying to get versions for (likely user error)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 22:25:49 UTC 2023
    - 6.9K bytes
    - Viewed (0)
  10. internal/http/dial_linux.go

    			// since Linux 4.11.
    			_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, unix.TCP_FASTOPEN_CONNECT, 1)
    
    			// Enable TCP quick ACK, John Nagle says
    			// "Set TCP_QUICKACK. If you find a case where that makes things worse, let me know."
    			_ = syscall.SetsockoptInt(fd, syscall.IPPROTO_TCP, unix.TCP_QUICKACK, 1)
    
    			/// Enable keep-alive
    			{
    				_ = unix.SetsockoptInt(fd, unix.SOL_SOCKET, unix.SO_KEEPALIVE, 1)
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed May 22 23:07:14 UTC 2024
    - 4.8K bytes
    - Viewed (3)
Back to top