Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 157 for Element (0.32 sec)

  1. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KaFirResolver.kt

        }
    
        private inline fun <R> wrapError(element: KtElement, action: () -> R): R {
            return try {
                action()
            } catch (e: Exception) {
                rethrowExceptionWithDetails(
                    "Error during resolving call ${element::class}",
                    exception = e,
                ) {
                    withPsiEntry("psi", element, analysisSession::getModule)
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 15:45:42 UTC 2024
    - 73K bytes
    - Viewed (0)
  2. platforms/core-configuration/model-core/src/test/groovy/org/gradle/api/internal/provider/CollectionPropertySpec.groovy

            ex.message == "Cannot add a null element to a property of type ${type().simpleName}."
        }
    
        def "ignores convention after element added"() {
            expect:
            property.add("a")
            property.convention(["other"])
            assertValueIs(["a"])
        }
    
        def "ignores convention after element added using provider"() {
            expect:
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 49.7K bytes
    - Viewed (0)
  3. platforms/software/build-init/src/main/java/org/gradle/buildinit/plugins/internal/BuildScriptBuilder.java

            private final String container;
            private final String element;
    
            public ContainerElementExpression(String container, String element) {
                this.container = container;
                this.element = element;
            }
    
            @Override
            public String with(Syntax syntax) {
                return syntax.containerElement(container, element);
            }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Dec 21 12:02:29 UTC 2023
    - 90K bytes
    - Viewed (0)
  4. pkg/proxy/nftables/proxier.go

    			})
    		}
    	}
    
    	// Now write loadbalancing rule
    	var elements []string
    	for i, ep := range endpoints {
    		epInfo, ok := ep.(*endpointInfo)
    		if !ok {
    			continue
    		}
    
    		elements = append(elements,
    			strconv.Itoa(i), ":", "goto", epInfo.chainName,
    		)
    		if i != len(endpoints)-1 {
    			elements = append(elements, ",")
    		}
    	}
    	tx.Add(&knftables.Rule{
    		Chain: svcChain,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 08 13:48:54 UTC 2024
    - 55.5K bytes
    - Viewed (0)
  5. src/math/big/int_test.go

    		}
    	}
    	// exhaustive test for small values
    	for n := 2; n < 100; n++ {
    		(&modulus).SetInt64(int64(n))
    		for x := 1; x < n; x++ {
    			(&element).SetInt64(int64(x))
    			(&gcd).GCD(nil, nil, &element, &modulus)
    			if (&gcd).Cmp(one) != 0 {
    				continue
    			}
    			(&inverse).ModInverse(&element, &modulus)
    			(&inverse).Mul(&inverse, &element)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 58.5K bytes
    - Viewed (0)
  6. src/cmd/compile/internal/types/type.go

    type Results struct {
    	Types []*Type // Last element is memory output from call.
    }
    
    // Array contains Type fields specific to array types.
    type Array struct {
    	Elem  *Type // element type
    	Bound int64 // number of elements; <0 if unknown yet
    }
    
    // Slice contains Type fields specific to slice types.
    type Slice struct {
    	Elem *Type // element type
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 04 14:29:45 UTC 2024
    - 49.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Synchronized.java

        @Override
        public int setCount(@ParametricNullness E element, int count) {
          synchronized (mutex) {
            return delegate().setCount(element, count);
          }
        }
    
        @Override
        public boolean setCount(@ParametricNullness E element, int oldCount, int newCount) {
          synchronized (mutex) {
            return delegate().setCount(element, oldCount, newCount);
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 53.4K bytes
    - Viewed (0)
  8. guava/src/com/google/common/collect/Synchronized.java

        @Override
        public int setCount(@ParametricNullness E element, int count) {
          synchronized (mutex) {
            return delegate().setCount(element, count);
          }
        }
    
        @Override
        public boolean setCount(@ParametricNullness E element, int oldCount, int newCount) {
          synchronized (mutex) {
            return delegate().setCount(element, oldCount, newCount);
          }
        }
    
        @Override
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 01 16:15:01 UTC 2024
    - 57.3K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

        RankedTensorType list_element_ty =
            subtypes.front().dyn_cast<RankedTensorType>();
        if (!list_element_ty) return failure();
    
        // Extract tensor elements for the TensorList and construct result type
        // based on the number of elements and element shape.
        const std::vector<tensorflow::Tensor> &tensors = list->tensors();
        llvm::SmallVector<int64_t, 4> result_shape = {
            static_cast<int64_t>(tensors.size())};
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  10. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch.go

    	t, err := sliceElementType(s)
    	if err != nil {
    		return nil, err
    	}
    
    	// If the elements are not maps...
    	if t.Kind() != reflect.Map {
    		// Sort the elements, because they may have been merged out of order.
    		return deduplicateAndSortScalars(s), nil
    	}
    
    	// Elements are maps - if one of the keys of the map is a map or a
    	// list, we may need to recurse into it.
    	newS := []interface{}{}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon May 01 23:34:23 UTC 2023
    - 75.5K bytes
    - Viewed (0)
Back to top