Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 10 for team1 (0.06 sec)

  1. pkg/scheduler/framework/plugins/interpodaffinity/filtering_test.go

    								{
    									Key:      "team",
    									Operator: metav1.LabelSelectorOpIn,
    									Values:   []string{"team1"},
    								},
    							},
    						},
    						TopologyKey: "region",
    					},
    				}, nil),
    			pods: []*v1.Pod{{Spec: v1.PodSpec{NodeName: "node1"}, ObjectMeta: metav1.ObjectMeta{Namespace: "subteam1.team1", Labels: podLabel}}},
    			node: &node1,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Jun 01 10:24:54 UTC 2023
    - 58.2K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/docs/userguide/optimizing-performance/configuration_cache.adoc

    This will help you while iterating on the required changes and prevent future regressions.
    
    Roll it out to your team::
    Once you have your developer workflow working, for example running tests from the IDE, you can consider enabling it for your team.
    A faster turnaround when changing code and running tests could be worth it.
    You'll probably want to do this as an opt-in first.
    +
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 71.1K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    	default:
    		namespaceParamName := "namespaces"
    		// Handler for standard REST verbs (GET, PUT, POST and DELETE).
    		namespaceParam := ws.PathParameter("namespace", "object name and auth scope, such as for teams and projects").DataType("string")
    		namespacedPath := namespaceParamName + "/{namespace}/" + resource
    		namespaceParams := []*restful.Parameter{namespaceParam}
    
    		resourcePath := namespacedPath
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/lite/transforms/prepare_tf.cc

    // This way TFLite can be used as a serialization format only and does not
    // require access to the TFLite runtime for optimizations as required by the
    // TFLite team.
    
    #include <climits>
    #include <cstdint>
    #include <utility>
    
    #include "absl/algorithm/container.h"
    #include "absl/memory/memory.h"
    #include "absl/numeric/bits.h"
    #include "llvm/ADT/ArrayRef.h"
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 28 21:49:50 UTC 2024
    - 64.6K bytes
    - Viewed (0)
  5. .bazelrc

    #     nogcp:        Disable GCS support.
    #     nohdfs:       Disable hadoop hdfs support.
    #     nonccl:       Disable nccl support.
    #
    #
    # Remote build execution options (only configured to work with TF team projects for now.)
    #     rbe_base:  General RBE options shared by all flavors.
    #     rbe_linux: General RBE options used on all linux builds.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Jun 11 17:12:54 UTC 2024
    - 52.9K bytes
    - Viewed (0)
  6. api/openapi-spec/v3/apis__authorization.k8s.io__v1_openapi.json

              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
            {
              "description": "object name and auth scope, such as for teams and projects",
              "in": "path",
              "name": "namespace",
              "required": true,
              "schema": {
                "type": "string",
                "uniqueItems": true
              }
            },
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 27 20:06:26 UTC 2023
    - 66.1K bytes
    - Viewed (0)
  7. tests/migrate_test.go

    		t.Fatalf("Found deleted column")
    	}
    }
    
    func TestMigrateConstraint(t *testing.T) {
    	names := []string{"Account", "fk_users_account", "Pets", "fk_users_pets", "Company", "fk_users_company", "Team", "fk_users_team", "Languages", "fk_users_languages"}
    
    	for _, name := range names {
    		if !DB.Migrator().HasConstraint(&User{}, name) {
    			DB.Migrator().CreateConstraint(&User{}, name)
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  8. tests/query_test.go

    	}
    }
    
    func TestQueryWithAssociation(t *testing.T) {
    	user := *GetUser("query_with_association", Config{Account: true, Pets: 2, Toys: 1, Company: true, Manager: true, Team: 2, Languages: 1, Friends: 3})
    
    	if err := DB.Create(&user).Error; err != nil {
    		t.Fatalf("errors happened when create user: %v", err)
    	}
    
    	user.CreatedAt = time.Time{}
    	user.UpdatedAt = time.Time{}
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed May 08 04:07:58 UTC 2024
    - 49.8K bytes
    - Viewed (0)
  9. okhttp/src/test/java/okhttp3/HttpUrlTest.kt

        // TODO make exception message escape non-printable characters
      }
    
      @Test
      fun parseDoesNotTrimOtherWhitespaceCharacters() {
        // Whitespace characters list from Google's Guava team: http://goo.gl/IcR9RD
        // line tabulation
        assertThat(parse("http://h/\u000b").encodedPath).isEqualTo("/%0B")
        // information separator 4
        assertThat(parse("http://h/\u001c").encodedPath).isEqualTo("/%1C")
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 67.9K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/jvm/java_testing.adoc

    M Test Suite>> plugin.
    
    JUnit 4.8 introduced the concept of categories for grouping JUnit 4 tests classes and methods.footnote:[The JUnit wiki contains a detailed description on how to work with JUnit categories: https://github.com/junit-team/junit/wiki/Categories[].] link:{groovyDslPath}/org.gradle.api.tasks.testing.Test.html#org.gradle.api.tasks.testing.Test:useJUnit(org.gradle.api.Action)[Test.useJUnit(org.gradle.api.Action)] allows you to specify the JUnit categories you want to include...
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 29 16:24:12 UTC 2024
    - 53.1K bytes
    - Viewed (0)
Back to top