Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 58 of 58 for addKind (0.17 sec)

  1. src/cmd/go/internal/modget/get.go

    }
    
    // applyUpgrades disambiguates candidate sets that are needed to upgrade (or
    // provide) transitive dependencies imported by previously-resolved packages.
    //
    // applyUpgrades modifies the build list by adding one module version from each
    // pathSet in upgrades, then downgrading (or further upgrading) those modules as
    // needed to maintain any already-resolved versions of other modules.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 18:26:32 UTC 2024
    - 66.5K bytes
    - Viewed (0)
  2. src/crypto/x509/x509.go

    					},
    				},
    			}
    			crlDp = append(crlDp, dp)
    		}
    
    		ret[n].Value, err = asn1.Marshal(crlDp)
    		if err != nil {
    			return
    		}
    		n++
    	}
    
    	// Adding another extension here? Remember to update the maximum number
    	// of elements in the make() at the top of the function and the list of
    	// template fields used in CreateCertificate documentation.
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 09:20:15 UTC 2024
    - 82K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/controller_test.go

    					tlsmode:        model.IstioMutualTLSModeLabel,
    					expectedProxyInstances: []expectedProxyInstances{
    						{
    							instancesWithSA: []*model.ServiceInstance{}, // The instance labels don't match the se anymore, so adding this wi removes 2 instances
    							address:         "2.2.2.2",
    						},
    					},
    				},
    			},
    		},
    		{
    			name: "change label removing all",
    			instances: []testWorkloadInstance{
    				{
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 15:31:09 UTC 2024
    - 92.9K bytes
    - Viewed (0)
  4. pkg/kubelet/kuberuntime/kuberuntime_manager_test.go

    	m.podStateProvider.(*fakePodStateProvider).removed = map[types.UID]struct{}{pod.UID: {}}
    
    	// GetPodStatus and the following SyncPod will not return errors in the
    	// case where the pod has been deleted. We are not adding any pods into
    	// the fakePodProvider so they are 'deleted'.
    	podStatus, err := m.GetPodStatus(ctx, pod.UID, pod.Name, pod.Namespace)
    	assert.NoError(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Jun 14 16:09:17 UTC 2024
    - 96K bytes
    - Viewed (0)
  5. src/testing/testing.go

    	// If that happens, we will misattribute the background race to some other
    	// test, or to no test at all — but that false-negative is so unlikely that it
    	// is not worth adding race-report noise for the common case where the test is
    	// completely suspended during the call to Parallel.
    	t.checkRaces()
    
    	if t.chatty != nil {
    		t.chatty.Updatef(t.name, "=== PAUSE %s\n", t.name)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 76.1K bytes
    - Viewed (0)
  6. pkg/controller/volume/persistentvolume/pv_controller.go

    				// OBSERVATION: pvc is "Pending", pv is "Bound"
    				logger.V(4).Info("Synchronizing unbound PersistentVolumeClaim, volume already bound, finishing the binding", "PVC", klog.KObj(claim))
    
    				// Finish the volume binding by adding claim UID.
    				if err = ctrl.bind(ctx, volume, claim); err != nil {
    					return err
    				}
    				// OBSERVATION: pvc is "Bound", pv is "Bound"
    				return nil
    			} else {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 08:42:31 UTC 2024
    - 89.2K bytes
    - Viewed (0)
  7. src/net/http/transport.go

    	// Historically, RoundTrip has not modified the Request in any way.
    	// We could avoid the need to keep a map of all in-flight requests by adding
    	// a field to the Request containing its cancel func, and setting that field
    	// while the request is in-flight. Callers aren't supposed to reuse a Request
    	// until after the response body is closed, so this wouldn't violate any
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Jun 06 21:59:21 UTC 2024
    - 91K bytes
    - Viewed (0)
  8. src/cmd/cgo/gcc.go

    	}
    
    	for i, n := range names {
    		switch sniff[i] {
    		default:
    			if sniff[i]&notDeclared != 0 && optional[n] {
    				// Ignore optional undeclared identifiers.
    				// Don't report an error, and skip adding n to the needType array.
    				continue
    			}
    			error_(f.NamePos[n], "could not determine kind of name for C.%s", fixGo(n.Go))
    		case notStrLiteral | notType:
    			n.Kind = "iconst"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 20 15:50:06 UTC 2024
    - 97K bytes
    - Viewed (0)
Back to top