Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 1,705 for grouped (0.17 sec)

  1. platforms/core-runtime/logging/src/main/java/org/gradle/internal/logging/sink/GroupingProgressLogEventGenerator.java

            }
        }
    
        private void onStart(ProgressStartEvent startEvent) {
            boolean isGrouped = startEvent.getBuildOperationCategory().isGrouped();
            OperationIdentifier progressId = startEvent.getProgressOperationId();
            if (startEvent.isBuildOperationStart() && isGrouped) {
                // Create a new group for tasks or configure project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 26 13:28:29 UTC 2024
    - 12.2K bytes
    - Viewed (0)
  2. src/compress/bzip2/huffman.go

    		// We need to 'increment' the code, which means treating |code|
    		// like a |length| bit number.
    		code += 1 << (32 - length)
    	}
    
    	// Now we can sort by the code so that the left half of each branch are
    	// grouped together, recursively.
    	slices.SortFunc(codes, func(a, b huffmanCode) int {
    		return cmp.Compare(a.code, b.code)
    	})
    
    	t.nodes = make([]huffmanNode, len(codes))
    	_, err := buildHuffmanNode(&t, codes, 0)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 15 17:44:37 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  3. cmd/erasure-metadata-utils_test.go

    		{
    			[]error{
    				errFileNotFound, errFileNotFound, errFileNotFound,
    				errFileNotFound, errFileNotFound, nil, nil, nil, nil, nil,
    			},
    			nil, nil,
    		},
    		// Checks if wrapped context cancellation errors are grouped as one.
    		{canceledErrs, nil, context.Canceled},
    	}
    	// Validates list of all the testcases for returning valid errors.
    	for i, testCase := range testCases {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jan 18 07:03:17 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  4. guava/src/com/google/common/eventbus/SubscriberRegistry.java

                      return getAnnotatedMethodsNotCached(concreteClass);
                    }
                  });
    
      /**
       * Returns all subscribers for the given listener grouped by the type of event they subscribe to.
       */
      private Multimap<Class<?>, Subscriber> findAllSubscribers(Object listener) {
        Multimap<Class<?>, Subscriber> methodsInListener = HashMultimap.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/apidiscovery/v2/generated.proto

      // for this resource across all versions in the API group.
      // Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
      // Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
      optional string resource = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  6. common-protos/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // for this resource across all versions in the API group.
      // Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
      // Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
      optional string resource = 1;
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 11 18:43:24 UTC 2024
    - 7.8K bytes
    - Viewed (0)
  7. src/go/printer/testdata/declarations.golden

    }
    
    // no tabs for single or ungrouped decls
    func _() {
    	const xxxxxx = 0
    	type x int
    	var xxx int
    	var yyyy float = 3.14
    	var zzzzz = "bar"
    
    	const (
    		xxxxxx = 0
    	)
    	type (
    		x int
    	)
    	var (
    		xxx int
    	)
    	var (
    		yyyy float = 3.14
    	)
    	var (
    		zzzzz = "bar"
    	)
    }
    
    // tabs for multiple or grouped decls
    func _() {
    	// no entry has a type
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 13 22:24:31 UTC 2021
    - 16.2K bytes
    - Viewed (0)
  8. android/guava/src/com/google/common/eventbus/SubscriberRegistry.java

                      return getAnnotatedMethodsNotCached(concreteClass);
                    }
                  });
    
      /**
       * Returns all subscribers for the given listener grouped by the type of event they subscribe to.
       */
      private Multimap<Class<?>, Subscriber> findAllSubscribers(Object listener) {
        Multimap<Class<?>, Subscriber> methodsInListener = HashMultimap.create();
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Apr 22 13:05:46 UTC 2021
    - 10.5K bytes
    - Viewed (0)
  9. pkg/apis/apidiscovery/types.go

    	// for this resource across all versions in the API group.
    	// Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
    	// Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
    	Resource string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Aug 09 18:45:33 UTC 2023
    - 7.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/api/apidiscovery/v2beta1/generated.proto

      // for this resource across all versions in the API group.
      // Resources with non-empty groups are located at /apis/<APIGroupDiscovery.objectMeta.name>/<APIVersionDiscovery.version>/<APIResourceDiscovery.Resource>
      // Resources with empty groups are located at /api/v1/<APIResourceDiscovery.Resource>
      optional string resource = 1;
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 28 15:34:11 UTC 2024
    - 7.8K bytes
    - Viewed (0)
Back to top