Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 360 for Result (0.1 sec)

  1. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/suppliers/DynamicRevisionRemoteResolveWithMetadataSupplierIntegrationTest.groovy

                void execute(ComponentMetadataSupplierDetails details) {
                    if (details.id.version == "2.2") {
                        details.result.status = status
                    } else {
                        details.result.status = "release"
                    }
                }
              }
              def status = project.findProperty("status") ?: "release"
    """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Apr 01 11:46:17 UTC 2024
    - 49K bytes
    - Viewed (0)
  2. guava/src/com/google/common/reflect/TypeToken.java

        }
    
        @Override
        protected Set<TypeToken<? super T>> delegate() {
          ImmutableSet<TypeToken<? super T>> result = interfaces;
          if (result == null) {
            return (interfaces =
                FluentIterable.from(allTypes).filter(TypeFilter.INTERFACE_ONLY).toSet());
          } else {
            return result;
          }
        }
    
        @Override
        public TypeSet interfaces() {
          return this;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  3. platforms/core-configuration/model-core/src/testFixtures/groovy/org/gradle/api/internal/provider/PropertySpec.groovy

            when:
            def result = property.get()
    
            then:
            1 * host.beforeRead(null) >> null
    
            and:
            result == someValue()
    
            when:
            def result2 = property.get()
    
            then:
            0 * host._
    
            and:
            result2 == someValue()
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri May 17 11:41:55 UTC 2024
    - 87.8K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/lower_static_tensor_list.cc

          int arg_idx = map_fn(result_and_idx.value());
          if (arg_idx != -1) {
            result.insert({result_and_idx.index(), arg_idx});
          }
        }
      }
      return result;
    }
    
    // Updates the tensorlist result types for the `If` Op. If the tensorlist result
    // maps to a specific argument (indicated by `tensor_list_map`), and also that
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 20:00:43 UTC 2024
    - 70.7K bytes
    - Viewed (0)
  5. src/crypto/des/des_test.go

    		}
    
    		// Encrypting with one member of the semi-weak pair
    		// and then encrypting the result with the other member
    		// should reproduce the original input.
    		result := encrypt(tt.key, tt.in)
    		result = encrypt(tt.out, result)
    
    		if !bytes.Equal(result, tt.in) {
    			t.Errorf("#%d: result: %x want: %x", i, result, tt.in)
    		}
    	}
    }
    
    func TestDESEncryptBlock(t *testing.T) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Aug 29 16:49:56 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  6. cmd/erasure-server-pool.go

    						poolIdx, setIdx, poolReadQuorums[poolIdx]))
    			}
    			result.HealthyRead = result.HealthyRead && healthyRead
    		}
    	}
    
    	if opts.Maintenance {
    		result.Healthy = result.Healthy && drivesHealing == 0
    		result.HealthyRead = result.HealthyRead && drivesHealing == 0
    		result.HealingDrives = drivesHealing
    	}
    
    	return result
    }
    
    // PutObjectMetadata - replace or add tags to an existing object
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 82.5K bytes
    - Viewed (0)
  7. guava-tests/test/com/google/common/collect/MapsTest.java

        Map<String, String> result = Maps.fromProperties(testProp);
        assertTrue(result.isEmpty());
        testProp.setProperty("first", "true");
    
        result = Maps.fromProperties(testProp);
        assertEquals("true", result.get("first"));
        assertEquals(1, result.size());
        testProp.setProperty("second", "null");
    
        result = Maps.fromProperties(testProp);
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  8. tensorflow/compiler/jit/deadness_analysis.cc

    }
    
    Status FindUniqueBackedge(Node* merge, const Edge** result) {
      *result = nullptr;
      CHECK(merge->IsMerge());
      for (const Edge* e : merge->in_edges()) {
        if (e->src()->IsNextIteration()) {
          if (*result != nullptr) {
            return CreateMultipleNextIterationInputsError(merge);
          }
          *result = e;
        }
      }
      return absl::OkStatus();
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 60.4K bytes
    - Viewed (0)
  9. android/guava/src/com/google/common/reflect/TypeToken.java

        }
    
        @Override
        protected Set<TypeToken<? super T>> delegate() {
          ImmutableSet<TypeToken<? super T>> result = interfaces;
          if (result == null) {
            return (interfaces =
                FluentIterable.from(allTypes).filter(TypeFilter.INTERFACE_ONLY).toSet());
          } else {
            return result;
          }
        }
    
        @Override
        public TypeSet interfaces() {
          return this;
        }
    
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Jun 26 21:02:13 UTC 2023
    - 53.6K bytes
    - Viewed (0)
  10. pkg/kubelet/kuberuntime/kuberuntime_manager.go

    	// return the list of pods ordered by their creation time.
    	sort.SliceStable(result, func(i, j int) bool {
    		return result[i].CreatedAt > result[j].CreatedAt
    	})
    	klog.V(4).InfoS("Retrieved pods from runtime", "all", all)
    	return result, nil
    }
    
    // containerKillReason explains what killed a given container
    type containerKillReason string
    
    const (
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 22 02:01:31 UTC 2024
    - 64.7K bytes
    - Viewed (0)
Back to top