Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for unconfined (0.1 sec)

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

    			},
    		},
    		validation: func(t *testing.T, pod *api.Pod) {
    			assert.Empty(t, pod.Annotations)
    			assert.Nil(t, pod.Spec.SecurityContext.AppArmorProfile)
    		},
    	}, {
    		description: "Pod field unconfined and no annotation present",
    		pod: &api.Pod{
    			Spec: api.PodSpec{
    				SecurityContext: &api.PodSecurityContext{
    					AppArmorProfile: &api.AppArmorProfile{
    						Type: api.AppArmorProfileTypeUnconfined,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 76.2K bytes
    - Viewed (0)
  2. tensorflow/compiler/jit/mark_for_compilation_pass.cc

        }
    
        // Merge the clusters.
        cluster_from->Merge(cluster_to);
        // Update `cycle_graph_`'s ID.
        cluster_from->set_cycles_graph_node_id(optional_merged_node.value());
    
        // Merge the UnionFind<Cluster*>.
        cluster_for_node_[from].Merge(&cluster_for_node_[to]);
    
        return true;
      }
    
      string EdgeContractionFailureMsg(Cluster* from, Cluster* to,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Feb 21 12:19:41 UTC 2024
    - 85.3K bytes
    - Viewed (0)
  3. pkg/scheduler/internal/cache/cache_test.go

    				t.Error(err)
    			}
    		})
    	}
    }
    
    // TestAddPodWillConfirm tests that a pod being Add()ed will be confirmed if assumed.
    // The pod info should still exist after manually expiring unconfirmed pods.
    func TestAddPodWillConfirm(t *testing.T) {
    	nodeName := "node"
    	now := time.Now()
    	ttl := 10 * time.Second
    
    	testPods := []*v1.Pod{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Oct 17 01:38:03 UTC 2023
    - 63.8K bytes
    - Viewed (0)
Back to top