Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 93 for unmatched (0.44 sec)

  1. pkg/workloadapi/security/authorization.pb.go

    	// The action to take if the request is matched with the rules.
    	// Default is ALLOW if not specified.
    	Action Action `protobuf:"varint,4,opt,name=action,proto3,enum=istio.security.Action" json:"action,omitempty"`
    	// Set of RBAC policy groups each containing its rules.
    	// If at least one of the groups is matched the policy action will
    	// take place.
    	// Groups are OR-ed.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri May 31 02:27:10 UTC 2024
    - 29.7K bytes
    - Viewed (0)
  2. pilot/pkg/config/kube/crdclient/client.go

    	if err != nil {
    		return "", err
    	}
    	return meta.GetResourceVersion(), nil
    }
    
    // Delete implements store interface
    // `resourceVersion` must be matched before deletion is carried out. If not possible, a 409 Conflict status will be
    func (cl *Client) Delete(typ config.GroupVersionKind, name, namespace string, resourceVersion *string) error {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Jun 14 00:12:28 UTC 2024
    - 13.7K bytes
    - Viewed (0)
  3. pilot/pkg/serviceregistry/serviceentry/conversion.go

    			// note: this is same as workloadentry handler
    			// endpoint port will first use the port defined in wle with same port name,
    			// if not port name not match, use the targetPort specified in ServiceEntry
    			// if both not matched, fallback to ServiceEntry port number.
    			var targetPort uint32
    			if port, ok := workloadInstance.PortMap[serviceEntryPort.Name]; ok && port > 0 {
    				targetPort = port
    			} else if serviceEntryPort.TargetPort > 0 {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 02:03:58 UTC 2024
    - 16.9K bytes
    - Viewed (0)
  4. staging/src/k8s.io/apiserver/pkg/storage/etcd3/store.go

    				recordDecodeError(s.groupResourceString, string(kv.Key))
    				return err
    			}
    
    			// being unable to set the version does not prevent the object from being extracted
    			if matched, err := opts.Predicate.Matches(obj); err == nil && matched {
    				v.Set(reflect.Append(v, reflect.ValueOf(obj).Elem()))
    			}
    
    			numEvald++
    
    			// free kv early. Long lists can take O(seconds) to decode.
    			getResp.Kvs[i] = nil
    		}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri May 10 11:56:42 UTC 2024
    - 35.2K bytes
    - Viewed (0)
  5. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/GroovyScriptClassCompiler.java

            File instrumentedOutput = output.getInstrumentedOutput();
            File metadataDir = output.getMetadataDir();
            // TODO: Remove the remapping or move remapping to an uncached unit of work?
            ClassPath remappedClasses = remapClasses(instrumentedOutput, remapped);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Apr 16 15:23:24 UTC 2024
    - 23.5K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/02-declaring-dependency-versions/dependency_locking.adoc

    The complete validation is as follows:
    
    * Existing entries in the lock state must be matched in the build
    ** A version mismatch or missing resolved module causes a build failure
    * Resolution result must not contain extra dependencies compared to the lock state
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Jun 06 16:55:22 UTC 2024
    - 15.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/quantization/common/quantization_lib/quantization_utils.h

    // A base rewrite pattern which matches any N-in-M-out operations with
    // quantization parameters propagated to at least one of its operands. The
    // quantization parameters are annotated by the QuantizeOp/DequantizeOp pairs.
    // Each matched pattern are rewritten by its quantized alternatives.
    //
    // The concrete pattern, extends from this base pattern, can specify whether it
    // allows dynamic range quantized operands and results for the operations in the
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Apr 24 20:30:06 UTC 2024
    - 41.7K bytes
    - Viewed (0)
  8. subprojects/composite-builds/src/integTest/groovy/org/gradle/integtests/composite/CompositeBuildConfigurationAttributesResolveIntegrationTest.groovy

                                artifact(name: 'c-bar', fileName: 'c-bar.jar')
                            }
                        }
                    }
                }
            }
        }
    
        def "attribute values are matched across builds - #type"() {
            given:
            createDirs("a", "b", "includedBuild")
            file('settings.gradle') << """
                include 'a', 'b'
                includeBuild 'includedBuild'
            """
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 08 14:30:36 UTC 2024
    - 33.6K bytes
    - Viewed (0)
  9. cmd/object-api-utils.go

    		return false
    	}
    
    	if len(cfg.Extensions) > 0 && hasStringSuffixInSlice(objStr, cfg.Extensions) {
    		// Matched an extension to compress, do not exclude.
    		return false
    	}
    
    	if len(cfg.MimeTypes) > 0 && hasPattern(cfg.MimeTypes, contentType) {
    		// Matched an MIME type to compress, do not exclude.
    		return false
    	}
    
    	// Did not match any inclusion filters, exclude from compression.
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue Jun 11 03:13:30 UTC 2024
    - 36.3K bytes
    - Viewed (0)
  10. operator/cmd/mesh/manifest-generate_test.go

    						if matches && found != "" {
    							// There must be exactly one match, or we will double inject.
    							t.Fatalf("matched multiple webhooks. Had %v, matched %v", found, sn)
    						}
    						if matches {
    							found = sn
    							match = i
    						}
    					}
    					// If our predicate can tell us the expected match, use that
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Jun 04 18:05:06 UTC 2024
    - 43.5K bytes
    - Viewed (0)
Back to top