Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 46 of 46 for Conflict (0.45 sec)

  1. pkg/kubelet/kubelet_test.go

    	status, found := kl.statusManager.GetPodStatus(pod.UID)
    	require.True(t, found, "Status of pod %q is not found in the status map", pod.UID)
    	require.Equal(t, phase, status.Phase)
    }
    
    // Tests that we handle port conflicts correctly by setting the failed status in status map.
    func TestHandlePortConflicts(t *testing.T) {
    	testKubelet := newTestKubelet(t, false /* controllerAttachDetachEnabled */)
    	defer testKubelet.Cleanup()
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
  2. CHANGELOG/CHANGELOG-1.4.md

    * Add "kubectl --overwrite" flag to automatically resolve conflicts between the modified and live configuration using values from the modified configuration. ([#26136](https://github.com/kubernetes/kubernetes/pull/26136), [@AdoHe](https://github.com/AdoHe))
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Dec 24 02:28:26 UTC 2020
    - 133.5K bytes
    - Viewed (0)
  3. tensorflow/c/c_api.cc

            const string& name = pair.first;
            if ((name == prefix) || absl::StartsWith(name, prefix_cmp)) {
              status->status = InvalidArgument(
                  "prefix [", prefix,
                  "] conflicts with existing node in the graph named [", name, "]");
              return;
            }
          }
          child_scope_name = prefix;
        }
        tensorflow::Scope scope =
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 102.3K bytes
    - Viewed (0)
  4. src/database/sql/sql_test.go

    			// print before panic, as panic may get lost due to conflicting panic
    			// (all goroutines asleep) elsewhere, since we might not unlock
    			// the mutex in freeConn here.
    			println("double free of conn. conflicts are:\nA) " + getFreedFrom(dbConn{db, c}) + "\n\nand\nB) " + stack())
    			panic("double free of conn.")
    		}
    		setFreedFrom(dbConn{db, c}, stack())
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 18:42:28 UTC 2024
    - 111.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/translate/import_model.cc

          return errors::InvalidArgument(node->type_string(), " node '",
                                         node->name(), "' has attribute 'index' ",
                                         index, " that conflicts with node '",
                                         (*nodes)[index].node->name(), "'");
        (*nodes)[index] = {node, 0};
    
        return absl::OkStatus();
      };
    
      // Collect arg and ret nodes from graph.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed May 01 11:17:36 UTC 2024
    - 183.2K bytes
    - Viewed (0)
  6. operator/cmd/mesh/testdata/manifest-generate/data-snapshot.tar.gz

    to see them you need change global.logging.level with cni:debug logLevel: debug # Configuration file to insert istio-cni plugin configuration # by default this will be the first file found in the cni-conf-dir # Example # cniConfFileName: 10-calico.conflist # CNI bin and conf dir override settings # defaults: cniBinDir: "" # Auto-detected based on version; defaults to /opt/cni/bin. cniConfDir: /etc/cni/net.d cniConfFileName: "" # This directory must exist on the node, if it does not, consult your container...
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Jan 10 05:10:03 UTC 2024
    - 198.1K bytes
    - Viewed (0)
Back to top