Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 22 for _ignored (0.2 sec)

  1. src/cmd/go/alldocs.go

    //		option. Packages named main are ignored.
    //
    //	-buildmode=exe
    //		Build the listed main packages and everything they import into
    //		executables. Packages not named main are ignored.
    //
    //	-buildmode=pie
    //		Build the listed main packages and everything they import into
    //		position independent executables (PIE). Packages not named
    //		main are ignored.
    //
    //	-buildmode=plugin
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 11 16:54:28 UTC 2024
    - 142.4K bytes
    - Viewed (0)
  2. pkg/scheduler/internal/queue/scheduling_queue_test.go

    					// However, this QueueingHintFn will be ignored actually because SchedulingQueueHint is disabled.
    					AssignedPodAdd: {
    						{
    							PluginName:     "fooPlugin1",
    							QueueingHintFn: queueHintReturnSkip,
    						},
    					},
    				},
    			},
    		},
    		{
    			name:                         "events before popping Pod are ignored when Pod is enqueued back to queue",
    			isSchedulingQueueHintEnabled: true,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 13:26:09 UTC 2024
    - 146.9K bytes
    - Viewed (0)
  3. src/cmd/go/internal/work/exec.go

    	GoFiles      []string // absolute paths to package source files
    	NonGoFiles   []string // absolute paths to package non-Go files
    	IgnoredFiles []string // absolute paths to ignored source files
    
    	ModulePath    string            // module path (may be "" on module error)
    	ModuleVersion string            // module version (may be "" on main module or module error)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Jun 10 14:46:37 UTC 2024
    - 105.6K bytes
    - Viewed (0)
  4. pkg/kubelet/kubelet_pods.go

    		return m, fmt.Errorf("failed to list services when setting up env vars")
    	}
    
    	// project the services in namespace ns onto the master services
    	for i := range services {
    		service := services[i]
    		// ignore services where ClusterIP is "None" or empty
    		if !v1helper.IsServiceIPSet(service) {
    			continue
    		}
    		serviceName := service.Name
    
    		// We always want to add environment variabled for master services
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 101.2K bytes
    - Viewed (0)
  5. cmd/bucket-replication.go

    				rinfo.ReplicationAction = rAction
    				rinfo.ReplicationStatus = replication.Completed
    			}
    			return
    		}
    	} else {
    		// SSEC objects will refuse HeadObject without the decryption key.
    		// Ignore the error, since we know the object exists and versioning prevents overwriting existing versions.
    		if isSSEC && strings.Contains(cerr.Error(), errorCodes[ErrSSEEncryptedObject].Description) {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 06:56:12 UTC 2024
    - 114.4K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/registry/generic/registry/store_test.go

    	if err != nil {
    		t.Fatalf("Unexpected error: %v", err)
    	}
    
    	if createdMeta.GetResourceVersion() != updatedMeta.GetResourceVersion() {
    		t.Errorf("no-op update should be ignored and not written to etcd")
    	}
    }
    
    func TestStoreUpdateHooks(t *testing.T) {
    	// To track which hooks were called in what order.  Not all hooks can
    	// mutate the object.
    	var milestones []string
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 10:12:02 UTC 2024
    - 101.8K bytes
    - Viewed (0)
  7. pkg/controller/job/job_controller_test.go

    							},
    						},
    					},
    				},
    			},
    			wantConditions:      nil,
    			wantStatusActive:    1,
    			wantStatusFailed:    0,
    			wantStatusSucceeded: 0,
    		},
    		"ignore pod failure based on OnPodConditions, ignored failures delays pod recreation": {
    			enableJobPodFailurePolicy: true,
    			job: batch.Job{
    				TypeMeta:   metav1.TypeMeta{Kind: "Job"},
    				ObjectMeta: validObjectMeta,
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 11 15:36:36 UTC 2024
    - 229.2K bytes
    - Viewed (0)
  8. pkg/kubelet/kubelet.go

    				klog.V(2).InfoS("SyncLoop (PLEG): event for pod", "pod", klog.KObj(pod), "event", e)
    				handler.HandlePodSyncs([]*v1.Pod{pod})
    			} else {
    				// If the pod no longer exists, ignore the event.
    				klog.V(4).InfoS("SyncLoop (PLEG): pod does not exist, ignore irrelevant event", "event", e)
    			}
    		}
    
    		if e.Type == pleg.ContainerDied {
    			if containerID, ok := e.Data.(string); ok {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 126.1K bytes
    - Viewed (0)
  9. src/net/http/server.go

    // in Go 1.22. To restore the old behavior, set the GODEBUG environment variable
    // to "httpmuxgo121=1". This setting is read once, at program startup; changes
    // during execution will be ignored.
    //
    // The backwards-incompatible changes include:
    //   - Wildcards are just ordinary literal path segments in 1.21.
    //     For example, the pattern "/{x}" will match only that path in 1.21,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
  10. pkg/kubelet/kubelet_test.go

    			Requests: v1.ResourceList{
    				emptyResource: resourceQuantity2,
    			},
    		}}},
    	}
    	// pod requiring missingResource will pass PredicateAdmit.
    	//
    	// Extended resources missing in node status are ignored in PredicateAdmit.
    	// This is required to support extended resources that are not managed by
    	// device plugin, such as cluster-level resources.
    	missingPodSpec := v1.PodSpec{NodeName: string(kl.nodeName),
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 106.9K bytes
    - Viewed (0)
Back to top