Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 556 for dropped (0.16 sec)

  1. staging/src/k8s.io/apimachinery/pkg/apis/meta/v1/types.go

    	// - Ignore: This will ignore any unknown fields that are silently
    	// dropped from the object, and will ignore all but the last duplicate
    	// field that the decoder encounters. This is the default behavior
    	// prior to v1.23.
    	// - Warn: This will send a warning via the standard warning response
    	// header for each unknown field that is dropped from the object, and
    	// for each duplicate field that is encountered. The request will
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Mar 05 10:52:25 UTC 2024
    - 79.2K bytes
    - Viewed (0)
  2. plugin/pkg/auth/authorizer/node/graph.go

    	// remove neighbors that are now edgeless
    	for _, neighbor := range neighborsToRemove {
    		g.removeVertex_locked(neighbor.(*namedVertex))
    	}
    
    	// remove edges from destination indexes for neighbors that dropped outbound edges
    	for _, edge := range edgesToRemoveFromIndexes {
    		g.removeEdgeFromDestinationIndex_locked(edge)
    	}
    }
    
    // must be called under write lock
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Mar 07 21:22:55 UTC 2024
    - 17.5K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiextensions-apiserver/pkg/registry/customresourcedefinition/strategy_test.go

    								},
    							},
    						},
    					},
    				},
    			},
    		},
    		// SelectableFields
    		{
    			name:                   "SelectableFields, For create, FG disabled, SelectableFields in update, dropped",
    			enableSelectableFields: false,
    			crd: &apiextensions.CustomResourceDefinition{
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  4. src/cmd/vendor/golang.org/x/text/internal/language/compact/language.go

    //go:generate go run gen.go gen_index.go -output tables.go
    //go:generate go run gen_parents.go
    
    package compact
    
    // TODO: Remove above NOTE after:
    // - verifying that tables are dropped correctly (most notably matcher tables).
    
    import (
    	"strings"
    
    	"golang.org/x/text/internal/language"
    )
    
    // Tag represents a BCP 47 language tag. It is used to specify an instance of a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 24 13:01:26 UTC 2024
    - 7.3K bytes
    - Viewed (0)
  5. pkg/api/persistentvolumeclaim/util_test.go

    		},
    		"only any enabled with xns volume ds when volume exists in oldSpec": {
    			spec:       core.PersistentVolumeClaimSpec{DataSourceRef: xnsVolumeDataSourceRef},
    			oldSpec:    core.PersistentVolumeClaimSpec{DataSourceRef: volumeDataSourceRef},
    			anyEnabled: true,
    			wantRef:    xnsVolumeDataSourceRef, // existing field isn't dropped.8
    		},
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 27.9K bytes
    - Viewed (0)
  6. pkg/istio-agent/xds_proxy_delta.go

    		proxyLog.Errorf("Skipping forwarding type url %s to Envoy as is not a valid Envoy type", resp.TypeUrl)
    		return
    	}
    	if con.isClosed() {
    		proxyLog.WithLabels("id", con.conID).Errorf("downstream dropped delta xds push to Envoy, connection already closed")
    		return
    	}
    	if err := sendDownstreamDelta(con.downstreamDeltas, resp); err != nil {
    		err = fmt.Errorf("send error for type url %s: %v", resp.TypeUrl, err)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Apr 04 20:29:08 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  7. src/cmd/vendor/github.com/google/pprof/internal/driver/commands.go

    	"prune_from": helpText(
    		"Drops any functions below the matched frame.",
    		"If set, any frames matching the specified regexp and any frames",
    		"below it will be dropped from each sample."),
    	"hide": helpText(
    		"Skips nodes matching regexp",
    		"Discard nodes that match this location.",
    		"Other nodes from samples that include this location will be shown.",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 18.5K bytes
    - Viewed (0)
  8. src/crypto/tls/auth.go

    	{PSSWithSHA512, crypto.SHA512.Size()*2 + 2, VersionTLS13},
    	// PKCS #1 v1.5 uses prefixes from hashPrefixes in crypto/rsa, and requires
    	//    emLen >= len(prefix) + hLen + 11
    	// TLS 1.3 dropped support for PKCS #1 v1.5 in favor of RSA-PSS.
    	{PKCS1WithSHA256, 19 + crypto.SHA256.Size() + 11, VersionTLS12},
    	{PKCS1WithSHA384, 19 + crypto.SHA384.Size() + 11, VersionTLS12},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:45:37 UTC 2024
    - 10K bytes
    - Viewed (0)
  9. pkg/scheduler/util/assumecache/assume_cache_test.go

    	// The assume cache supports that, but doing so in real code suffers from
    	// a race: if an unrelated update is received from the apiserver while
    	// such an object is assumed, the local modification gets dropped.
    	oldObj := makeObj("pvc1", "5", "")
    	newObj := makeObj("pvc1", "5", "")
    
    	// Restore object that doesn't exist
    	cache.Restore("nothing")
    
    	// Add old object to cache.
    	informer.add(oldObj)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Thu Apr 25 09:46:58 UTC 2024
    - 9.5K bytes
    - Viewed (0)
  10. api/openapi-spec/v3/apis__storage.k8s.io__v1alpha1_openapi.json

    containing unknown or duplicate fields. Valid values are: - Ignore: This will ignore any unknown fields that are silently dropped from the object, and will ignore all but the last duplicate field that the decoder encounters. This is the default behavior prior to v1.23. - Warn: This will send a warning via the standard warning response header for each unknown field that is dropped from the object, and for each duplicate field that is encountered. The request will still succeed if there are no other...
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 08 04:18:56 UTC 2024
    - 117.5K bytes
    - Viewed (0)
Back to top