Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 18 of 18 for apiv1 (0.17 sec)

  1. pkg/registry/core/pod/strategy.go

    limitations under the License.
    */
    
    package pod
    
    import (
    	"context"
    	"fmt"
    	"net"
    	"net/http"
    	"net/url"
    	"strconv"
    	"strings"
    	"time"
    
    	apiv1 "k8s.io/api/core/v1"
    	apiequality "k8s.io/apimachinery/pkg/api/equality"
    	"k8s.io/apimachinery/pkg/api/errors"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 17:51:48 UTC 2024
    - 29.8K bytes
    - Viewed (0)
  2. pkg/registry/core/pod/strategy_test.go

    import (
    	"context"
    	"fmt"
    	"net/http"
    	"net/url"
    	"reflect"
    	"strings"
    	"testing"
    
    	"github.com/google/go-cmp/cmp"
    	"github.com/google/go-cmp/cmp/cmpopts"
    	"github.com/stretchr/testify/assert"
    	apiv1 "k8s.io/api/core/v1"
    	"k8s.io/apimachinery/pkg/api/errors"
    	"k8s.io/apimachinery/pkg/api/resource"
    	metav1 "k8s.io/apimachinery/pkg/apis/meta/v1"
    	"k8s.io/apimachinery/pkg/fields"
    	"k8s.io/apimachinery/pkg/labels"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  3. pkg/printers/internalversion/printers_test.go

    					Conditions: []api.PodCondition{
    						{
    							Type:   api.PodScheduled,
    							Status: api.ConditionFalse,
    							Reason: apiv1.PodReasonSchedulingGated,
    						},
    					},
    				},
    			},
    			[]metav1.TableRow{{Cells: []interface{}{"test15", "0/2", apiv1.PodReasonSchedulingGated, "0", "<unknown>"}}},
    		},
    		{
    			// Test pod condition succeed
    			api.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 14:04:15 UTC 2024
    - 218.6K bytes
    - Viewed (0)
  4. prow/config/calico.yaml

                      from this pool.
                    type: boolean
                  ipip:
                    description: 'Deprecated: this field is only used for APIv1 backwards
                      compatibility. Setting this field is not allowed, this field is
                      for internal use only.'
                    properties:
                      enabled:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue May 21 18:32:01 UTC 2024
    - 246.5K bytes
    - Viewed (0)
  5. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/attributes/MultipleVariantSelectionIntegrationTest.groovy

        void "can select distinct variants of the same component by using different attributes if they have different capabilities"() {
            given:
            repository {
                'org:test:1.0' {
                    variant('api1') {
                        attribute('custom', 'c1')
                        capability('cap1')
                    }
                    variant('api2') {
                        attribute('custom', 'c2')
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Jan 29 22:29:19 UTC 2024
    - 26.2K bytes
    - Viewed (0)
  6. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/ResolutionIssuesIntegrationTest.groovy

                dependencyResolutionManagement {
                    ${mavenCentralRepository()}
                    components {
                        withModule("org.jboss.spec.javax.transaction:jboss-transaction-api_1.2_spec") {
                            allVariants {
                                withCapabilities {
                                    addCapability("javax.transaction", "javax.transaction-api", id.version)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Mar 12 04:02:23 UTC 2024
    - 30K bytes
    - Viewed (0)
  7. maven-core/src/test/java/org/apache/maven/internal/impl/TestApi.java

                    new DefaultLookup(plexusContainer),
                    runtimeInformation);
            DefaultLocalRepository localRepository =
                    new DefaultLocalRepository(new LocalRepository("target/test-classes/apiv4-repo"));
            org.apache.maven.api.RemoteRepository remoteRepository = session.getRemoteRepository(
                    new RemoteRepository.Builder("mirror", "default", "file:target/test-classes/repo").build());
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu Apr 25 14:13:36 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformIntegrationTest.groovy

            file("input1.jar").text = "jar"
            file("input2.jar").text = "jar"
            buildFile("""
                configurations {
                    api1 {
                        attributes { attribute usage, 'api' }
                    }
                    api2 {
                        attributes { attribute usage, 'api' }
                    }
                }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Nov 07 18:43:42 UTC 2023
    - 100.8K bytes
    - Viewed (0)
Back to top