Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 39 for hpp2 (0.04 sec)

  1. pkg/scheduler/internal/queue/scheduling_queue_test.go

    	if err != nil {
    		t.Fatalf("unexpected error from AddUnschedulableIfNotPresent: %v", err)
    	}
    	expectInFlightPods(t, q)
    	// Construct another Pod, and associate its scheduler failure to plugin "barPlugin".
    	hpp2 := clonePod(highPriorityPodInfo.Pod, "hpp2")
    	q.activeQ.Add(q.newQueuedPodInfo(hpp2))
    	if p, err := q.Pop(logger); err != nil || p.Pod != hpp2 {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/boost/version.hpp

    //  Boost version.hpp configuration header file  ------------------------------//
    
    //  (C) Copyright John maddock 1999. Distributed under the Boost
    //  Software License, Version 1.0. (See accompanying file
    //  LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
    
    //  See http://www.boost.org/libs/config for documentation
    
    #ifndef BOOST_VERSION_HPP
    #define BOOST_VERSION_HPP
    
    //
    //  Caution, this is the only boost header that is guaranteed
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 1.1K bytes
    - Viewed (0)
  3. fess-crawler/src/test/resources/extractor/program/test.hpp

    Shinsuke Sugaya <******@****.***> 1444529815 +0900
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Sun Oct 11 02:16:55 UTC 2015
    - 48 bytes
    - Viewed (0)
  4. pkg/apis/autoscaling/v1/defaults_test.go

    		obj2 := roundTrip(t, runtime.Object(hpa))
    		hpa2, ok := obj2.(*autoscalingv1.HorizontalPodAutoscaler)
    		if !ok {
    			t.Fatalf("unexpected object: %v", obj2)
    		}
    		if hpa2.Spec.MinReplicas == nil {
    			t.Errorf("unexpected nil MinReplicas")
    		} else if test.expectReplicas != *hpa2.Spec.MinReplicas {
    			t.Errorf("expected: %d MinReplicas, got: %d", test.expectReplicas, *hpa2.Spec.MinReplicas)
    		}
    	}
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 12 15:46:12 UTC 2023
    - 4.7K bytes
    - Viewed (0)
  5. platforms/native/language-native/src/test/groovy/org/gradle/swiftpm/plugins/SwiftPackageManagerExportPluginTest.groovy

            expect:
            def generateManifest = project.tasks['generateSwiftPmManifest']
            def products = generateManifest.package.get().products
            products.name == ["app1", "app2"]
            products.target.name == ["app1", "app2"]
            products.target.publicHeaderDir == [null, null]
            products.every { it instanceof DefaultExecutableProduct }
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 10.9K bytes
    - Viewed (0)
  6. android/guava-tests/test/com/google/common/net/HostAndPortTest.java

          assertNull(expectHost);
          return;
        }
        assertNotNull(expectHost);
    
        // Apply withDefaultPort(), yielding hp2.
        final boolean badDefaultPort = (defaultPort < 0 || defaultPort > 65535);
        HostAndPort hp2 = null;
        try {
          hp2 = hp.withDefaultPort(defaultPort);
          assertFalse(badDefaultPort);
        } catch (IllegalArgumentException e) {
          assertTrue(badDefaultPort);
        }
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Mon Apr 17 11:19:47 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/3rd-party-lib/boost_1_55_0/README.txt

    This is a placeholder for a boost distribution, demonstrating how boost could be incorporated into a Gradle project
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 218 bytes
    - Viewed (0)
  8. platforms/native/language-native/src/integTest/groovy/org/gradle/language/cpp/CppLanguageIntegrationTest.groovy

            given:
            helloWorldApp.library.headerFiles.each { it.writeToDir(file("src/shared")) }
    
            file("src/main/cpp/main.cpp") << helloWorldApp.mainSource.content
            file("src/main/cpp2/hello.cpp") << helloWorldApp.librarySources[0].content
            file("src/main/sum-sources/sum.cpp") << helloWorldApp.librarySources[1].content
    
            and:
            buildFile << """
    model {
        components {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 16 20:20:03 UTC 2023
    - 5.1K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/prebuilt/groovy/src/main/cpp/main.cpp

    #include <iostream>
    #include "version.hpp"
    #include "util.h"
    
    int main () {
      std::cout << "Built with Boost version: " << BOOST_LIB_VERSION << std::endl;
      printBuildType();
      return 0;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 189 bytes
    - Viewed (0)
  10. src/math/rand/v2/pcg.go

    	// and following comments.
    
    	// DXSM "double xorshift multiply"
    	// https://github.com/imneme/pcg-cpp/blob/428802d1a5/include/pcg_random.hpp#L1015
    
    	// https://github.com/imneme/pcg-cpp/blob/428802d1a5/include/pcg_random.hpp#L176
    	const cheapMul = 0xda942042e4dd58b5
    	hi ^= hi >> 32
    	hi *= cheapMul
    	hi ^= hi >> 48
    	hi *= (lo | 1)
    	return hi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 13 21:31:58 UTC 2024
    - 2.9K bytes
    - Viewed (0)
Back to top