Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 42 for Conflict (0.36 sec)

  1. staging/src/k8s.io/apimachinery/pkg/util/strategicpatch/patch_test.go

    				getSchemaType(schema), err, c.Description, mergepatch.ToYAMLOrError(c.StrategicMergePatchTestCaseData))
    			return
    		}
    
    		if !strings.Contains(c.Description, "conflict") {
    			t.Errorf("using %s unexpected conflict: %s\nin test case: %s\ncannot create three way patch:\n%s\n",
    				getSchemaType(schema), err, c.Description, mergepatch.ToYAMLOrError(c.StrategicMergePatchTestCaseData))
    			return
    		}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 31 16:45:45 UTC 2023
    - 130.4K bytes
    - Viewed (0)
  2. subprojects/diagnostics/src/integTest/groovy/org/gradle/api/tasks/diagnostics/DependencyInsightReportTaskIntegrationTest.groovy

        | org.gradle.libraryelements | jar          |           |
        | org.gradle.status          | release      |           |
        | org.gradle.usage           | java-runtime |           |
       Selection reasons:
          - By conflict resolution: between versions 2.5, 1.5 and 1.0
    
    org:leaf2:2.5
    \\--- org:toplevel3:1.0
         \\--- conf
    
    org:leaf2:1.0 -> 2.5
    +--- org:middle1:1.0
    |    \\--- org:toplevel:1.0
    |         \\--- conf
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 15:15:56 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  3. pkg/kubelet/kubelet_node_status_test.go

    		{
    			name:            "create failed",
    			newNode:         newNode(false),
    			createError:     conflict,
    			expectedResult:  false,
    			expectedActions: 1,
    		},
    		{
    			name:            "get existing node failed",
    			newNode:         newNode(false),
    			createError:     alreadyExists,
    			getError:        conflict,
    			expectedResult:  false,
    			expectedActions: 2,
    		},
    		{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 08 19:23:19 UTC 2024
    - 115.8K bytes
    - Viewed (0)
  4. pkg/controller/daemon/daemon_controller_test.go

    		podSpec := v1.PodSpec{
    			NodeName: "port-conflict",
    			Containers: []v1.Container{{
    				Ports: []v1.ContainerPort{{
    					HostPort: 666,
    				}},
    			}},
    		}
    		_, ctx := ktesting.NewTestContext(t)
    		manager, podControl, _, err := newTestController(ctx)
    		if err != nil {
    			t.Fatalf("error creating DaemonSets controller: %v", err)
    		}
    		node := newNode("port-conflict", nil)
    		err = manager.nodeStore.Add(node)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 04 18:33:12 UTC 2024
    - 111.4K bytes
    - Viewed (0)
  5. src/net/http/server.go

    // If neither is more specific, then the patterns conflict.
    // There is one exception to this rule, for backwards compatibility:
    // if two patterns would otherwise conflict and one has a host while the other does not,
    // then the pattern with the host takes precedence.
    // If a pattern passed to [ServeMux.Handle] or [ServeMux.HandleFunc] conflicts with
    // another pattern that is already registered, those functions panic.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apimachinery/pkg/util/managedfields/internal/testdata/swagger.json

            "defaultMode": {
              "description": "Optional: mode bits to use on created files by default. Must be a value between 0 and 0777. Defaults to 0644. Directories within the path are not affected by this setting. This might be in conflict with other options that affect the file mode, like fsGroup, and the result can be other mode bits set.",
              "format": "int32",
              "type": "integer"
            },
            "items": {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Feb 20 15:45:02 UTC 2024
    - 229.4K bytes
    - Viewed (0)
  7. pkg/scheduler/schedule_one_test.go

    				AllBound:    true,
    				FindReasons: volumebinding.ConflictReasons{volumebinding.ErrReasonNodeConflict},
    			},
    			eventReason: "FailedScheduling",
    			expectError: makePredicateError("1 node(s) had volume node affinity conflict"),
    		},
    		{
    			name: "unbound/no matches",
    			volumeBinderConfig: &volumebinding.FakeVolumeBinderConfig{
    				FindReasons: volumebinding.ConflictReasons{volumebinding.ErrReasonBindConflict},
    			},
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:20:55 UTC 2024
    - 128.1K bytes
    - Viewed (0)
  8. pkg/config/validation/validation_test.go

    				Hosts: []string{"google.com"},
    				Ports: []*networking.ServicePort{
    					{Number: 80, Protocol: "http", Name: "http-conflict"},
    					{Number: 8080, Protocol: "http", Name: "http-conflict"},
    				},
    				Resolution: networking.ServiceEntry_NONE,
    			},
    			valid: false,
    		},
    
    		{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Apr 30 03:11:45 UTC 2024
    - 196K bytes
    - Viewed (0)
  9. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    			}
    			pod.Labels = map[string]string{
    				"modified": "true",
    			}
    			return pod, nil
    		}
    
    		go func() {
    			// This update will cause the Delete to retry due to conflict.
    			_, _, err := registry.Update(testContext, test.pod.Name, rest.DefaultUpdatedObjectInfo(test.pod, transformer), rest.ValidateAllObjectFunc, rest.ValidateAllObjectUpdateFunc, false, &metav1.UpdateOptions{})
    			if err != nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/tf_passes.td

        creation of TensorList.
    
        This pass will create multiple instances of TensorList for each arg of the
        while op and each use and thus there will be not a conflict in resolving the
        shape of these different inputs.
      }];
    
      let constructor = "TF::CreateReplicateTensorListInitOpsPass()";
    }
    
    def TensorFlowShapeInferencePass : Pass<"tf-shape-inference", "ModuleOp"> {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 12 21:18:05 UTC 2024
    - 99.6K bytes
    - Viewed (0)
Back to top