Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 357 for one8 (0.06 sec)

  1. staging/src/k8s.io/api/apps/v1beta2/types.go

    }
    
    type DeploymentStrategyType string
    
    const (
    	// Kill all existing pods before creating new ones.
    	RecreateDeploymentStrategyType DeploymentStrategyType = "Recreate"
    
    	// Replace the old ReplicaSets by new one using rolling update i.e gradually scale down the old ReplicaSets and scale up the new one.
    	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:24 UTC 2023
    - 52.2K bytes
    - Viewed (0)
  2. staging/src/k8s.io/api/apps/v1/types.go

    }
    
    // +enum
    type DeploymentStrategyType string
    
    const (
    	// Kill all existing pods before creating new ones.
    	RecreateDeploymentStrategyType DeploymentStrategyType = "Recreate"
    
    	// Replace the old ReplicaSets by new one using rolling update i.e gradually scale down the old ReplicaSets and scale up the new one.
    	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu May 23 17:42:49 UTC 2024
    - 49.1K bytes
    - Viewed (0)
  3. src/index/suffixarray/sais2.go

    	bucket = bucket[:256] // eliminate bounds check for bucket[cB] below
    
    	// This scan is similar to the one in induceSubL_8_64 above.
    	// That one arranges to clear all but the leftmost L-type indexes.
    	// This scan leaves all the L-type indexes and the original S-type
    	// indexes, but it negates the positive leftmost L-type indexes
    	// (the ones that induceS_8_64 needs to process).
    
    	// expand_8_64 left out the implicit entry sa[-1] == len(text),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 18 23:57:18 UTC 2024
    - 52.3K bytes
    - Viewed (0)
  4. guava-tests/test/com/google/common/collect/MapsTest.java

        assertEquals("three", map.higherKey("one"));
        assertEquals("three", map.higherKey("r"));
        assertEquals("three", map.ceilingKey("r"));
        assertEquals("one", map.ceilingKey("one"));
        assertEquals(mapEntry("three", 5), map.higherEntry("one"));
        assertEquals(mapEntry("one", 3), map.ceilingEntry("one"));
        assertEquals("one", map.lowerKey("three"));
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri May 17 15:27:58 UTC 2024
    - 67.1K bytes
    - Viewed (0)
  5. staging/src/k8s.io/api/extensions/v1beta1/types.go

    }
    
    type DeploymentStrategyType string
    
    const (
    	// Kill all existing pods before creating new ones.
    	RecreateDeploymentStrategyType DeploymentStrategyType = "Recreate"
    
    	// Replace the old RCs by new one using rolling update i.e gradually scale down the old RCs and scale up the new one.
    	RollingUpdateDeploymentStrategyType DeploymentStrategyType = "RollingUpdate"
    )
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:29 UTC 2023
    - 61.3K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserProfileTest.groovy

                    <some.group>group-one</some.group>
                    <some.artifact>artifact-one</some.artifact>
                    <some.version>version-one</some.version>
                </properties>
            </profile>
        </profiles>
    </project>
    """
    
            when:
            parsePom()
    
            then:
            metadata.id == componentId('group-one', 'artifact-one', 'version-one')
            metadata.dependencies.empty
        }
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 49.8K bytes
    - Viewed (0)
  7. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/GradlePomModuleDescriptorParserTest.groovy

        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
        <version>version-one</version>
    
        <parent>
            <groupId>group-one</groupId>
            <artifactId>parent</artifactId>
            <version>version-one</version>
        </parent>
    
        <dependencies>
            <dependency>
                <groupId>group-one</groupId>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 75.4K bytes
    - Viewed (0)
  8. subprojects/core/src/integTest/groovy/org/gradle/api/tasks/CopyTaskIntegrationSpec.groovy

        }
    
        def "multiple source with inherited include and exclude patterns"() {
            given:
            file('files/one/one.a').createFile()
            file('files/one/one.ignore').createFile()
            file('files/one/sub/one.a').createFile()
            file('files/one/sub/ignore/ignore.a').createFile()
            file('files/two/two.b').createFile()
            file('files/two/two.ignore').createFile()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 03 15:21:23 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  9. platforms/software/dependency-management/src/test/groovy/org/gradle/api/internal/artifacts/ivyservice/ivyresolve/parser/PomReaderProfileTest.groovy

        def "parse POM without active profile"() {
            when:
            pomFile << """
    <project>
        <modelVersion>4.0.0</modelVersion>
        <groupId>group-one</groupId>
        <artifactId>artifact-one</artifactId>
        <version>version-one</version>
        <name>Test Artifact One</name>
        <profiles>
            <profile>
                <id>profile-1</id>
                <activation>
                    <activeByDefault>false</activeByDefault>
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Oct 10 21:10:11 UTC 2023
    - 79.4K bytes
    - Viewed (0)
  10. tensorflow/cc/gradients/math_grad.cc

      // and y.
      Output is_positive_shape = Shape(scope, is_positive);
      Output ones =
          Tile(scope, Const(scope, {1}), Subtract(scope, Rank(scope, params), {1}));
      auto broadcastable_shape = Concat(scope, {is_positive_shape, ones},
                                        /*axis=*/0);
      is_positive = Reshape(scope, is_positive, broadcastable_shape);
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Aug 25 18:20:20 UTC 2023
    - 50.7K bytes
    - Viewed (0)
Back to top