Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 180 for Result (0.11 sec)

  1. 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)
  2. 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)
  3. platforms/software/dependency-management/src/main/java/org/gradle/api/internal/artifacts/configurations/DefaultConfiguration.java

            }
            Set<Configuration> result = WrapUtil.toLinkedSet(this);
            collectSuperConfigs(this, result);
            return result;
        }
    
        private void collectSuperConfigs(Configuration configuration, Set<Configuration> result) {
            for (Configuration superConfig : configuration.getExtendsFrom()) {
                // The result is an ordered set - so seeing the same value a second time pushes further down
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 23 17:36:01 UTC 2024
    - 85.4K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/cacher/cacher.go

    		return nil, false
    	}
    
    	result := make([]string, 0, 2)
    	result = append(result, c.indexedTrigger.indexerFunc(baseObjectThreadUnsafe(event.Object)))
    	if event.PrevObject == nil {
    		return result, true
    	}
    	prevTriggerValue := c.indexedTrigger.indexerFunc(baseObjectThreadUnsafe(event.PrevObject))
    	if result[0] != prevTriggerValue {
    		result = append(result, prevTriggerValue)
    	}
    	return result, true
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 51.8K bytes
    - Viewed (0)
  5. pkg/kubelet/server/server_test.go

    	if err != nil {
    		// copying the response body did not work
    		t.Errorf("Cannot copy resp: %#v", err)
    	}
    	result := string(body)
    	if !strings.Contains(result, "kubelet.log") || !strings.Contains(result, "google.log") {
    		t.Errorf("Received wrong data: %s", result)
    	}
    }
    
    func TestServeRunInContainer(t *testing.T) {
    	fw := newServerTest()
    	defer fw.testHTTPServer.Close()
    	output := "foo bar"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/quantization/tensorflow/passes/quantize_composite_functions.cc

          auto scast_op = rewriter.create<quantfork::StorageCastOp>(
              call_op.getLoc(), result_type, result);
          replace_map.insert(std::make_pair(result, scast_op));
        }
    
        for (auto replace_pair : replace_map) {
          Value result = replace_pair.first;
          quantfork::StorageCastOp scast_op = replace_pair.second;
          result.replaceAllUsesExcept(scast_op, scast_op);
        }
    
        // Make a copy of the quantized function.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 54.5K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/Multimaps.java

          if (result == null) {
            entries = result = unmodifiableEntries(delegate.entries());
          }
          return result;
        }
    
        @Override
        public Collection<V> get(@ParametricNullness K key) {
          return unmodifiableValueCollection(delegate.get(key));
        }
    
        @Override
        public Multiset<K> keys() {
          Multiset<K> result = keys;
          if (result == null) {
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Sun Jun 02 13:36:19 UTC 2024
    - 86.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tf2xla/internal/passes/extract_outside_compilation.cc

      for (Value result : return_value_from_host)
        parallel_execute_result_types.push_back(result.getType());
      for (Value result : return_value_from_device)
        parallel_execute_result_types.push_back(result.getType());
      return parallel_execute_result_types;
    }
    
    // Remap the device cluster results with parallel execute op results
    llvm::SmallVector<Value, 4> GetRemappedTpuClusterResults(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 21:25:12 UTC 2024
    - 68.3K bytes
    - Viewed (0)
  9. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/service/DefaultServiceRegistry.java

            }
    
            public final Object getInstance() {
                Object result = instance;
                if (result == null) {
                    synchronized (this) {
                        result = instance;
                        if (result == null) {
                            setInstance(createServiceInstance());
                            result = instance;
                        }
                    }
                }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 53.3K bytes
    - Viewed (0)
  10. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheProblemReportingIntegrationTest.groovy

                    @Override void beforeSuite(TestDescriptor suite) {}
                    @Override void afterSuite(TestDescriptor suite, TestResult result) {}
                    @Override void beforeTest(TestDescriptor testDescriptor) {}
                    @Override void afterTest(TestDescriptor testDescriptor, TestResult result) {}
                }
    
                class TestOutputAdapter implements TestOutputListener {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 56.7K bytes
    - Viewed (0)
Back to top