Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 231 for Extract (0.14 sec)

  1. pkg/config/mesh/mesh_test.go

    					},
    				},
    			}}
    			mc.TrustDomainAliases = []string{"default", "both"}
    			res, err := mesh.ApplyMeshConfig(tt.in, mc)
    			if err != nil {
    				t.Fatal(err)
    			}
    			// Just extract fields we are testing
    			minimal := &meshconfig.MeshConfig{}
    			minimal.DefaultProviders = res.DefaultProviders
    			minimal.ExtensionProviders = res.ExtensionProviders
    			minimal.TrustDomainAliases = res.TrustDomainAliases
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 20:06:41 UTC 2024
    - 11.7K bytes
    - Viewed (0)
  2. subprojects/core/src/main/java/org/gradle/execution/taskgraph/DefaultTaskExecutionGraph.java

                throw new IllegalStateException("Unknown type of node: " + node);
            }
        }
    
        @Override
        public Set<Task> getFilteredTasks() {
            /*
                Note: we currently extract this information from the execution plan because it's
                buried under functions in #filter. This could be detangled/simplified by introducing
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Mar 08 13:46:07 UTC 2024
    - 15.2K bytes
    - Viewed (0)
  3. cmd/signature-v4_test.go

    				"X-Amz-Content-Sha256": payloadSHA256,
    			},
    			region:   "us-west-1",
    			expected: ErrUnsignedHeaders,
    		},
    		// (3) Should fail to extract headers if the host header is not signed.
    		{
    			queryParams: map[string]string{
    				"X-Amz-Algorithm":      signV4Algorithm,
    				"X-Amz-Date":           now.Format(iso8601Format),
    				"X-Amz-Expires":        "60",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Jun 13 22:26:38 UTC 2024
    - 10.5K bytes
    - Viewed (0)
  4. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicybinding.go

    // validatingAdmissionPolicyBinding must be a unmodified ValidatingAdmissionPolicyBinding API object that was retrieved from the Kubernetes API.
    // ExtractValidatingAdmissionPolicyBinding provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  5. cmd/kubeadm/app/util/patches/patches.go

    	}
    
    	regFileNameSplit := regexp.MustCompile(
    		fmt.Sprintf(`^(%s)([^.+\n]*)?(\+)?(%s)?`, strings.Join(knownTargets, "|"), patchTypesJoined),
    	)
    	// Extract the target name and patch type. The resulting sub-string slice would look like this:
    	//   [full-match, targetName, suffix, +, patchType]
    	sub := regFileNameSplit.FindStringSubmatch(fileName)
    	if sub == nil {
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 28 08:48:22 UTC 2024
    - 10.2K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/tf_tfl_translate.cc

    enum TranslationStatus { kTrSuccess, kTrFailure };
    
    static int PrintFunctionResultMapping(const std::string &result,
                                          ModuleOp module) {
      // Build model from the resultant string to extract the return values from
      // their source of truth.
      auto model =
          tflite::FlatBufferModel::BuildFromBuffer(result.data(), result.size());
      if (!model) return kTrFailure;
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 03 18:01:23 UTC 2024
    - 14K bytes
    - Viewed (0)
  7. src/regexp/regexp.go

    					}
    					break
    				}
    			}
    		}
    	}
    	dst = append(dst, template...)
    	return dst
    }
    
    // extract returns the name from a leading "name" or "{name}" in str.
    // (The $ has already been removed by the caller.)
    // If it is a number, extract returns num set to that number; otherwise num = -1.
    func extract(str string) (name string, num int, rest string, ok bool) {
    	if str == "" {
    		return
    	}
    	brace := false
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Feb 26 20:50:01 UTC 2024
    - 38.5K bytes
    - Viewed (0)
  8. staging/src/k8s.io/client-go/applyconfigurations/admissionregistration/v1/validatingadmissionpolicy.go

    // validatingAdmissionPolicy must be a unmodified ValidatingAdmissionPolicy API object that was retrieved from the Kubernetes API.
    // ExtractValidatingAdmissionPolicy provides a way to perform a extract/modify-in-place/apply workflow.
    // Note that an extracted apply configuration will contain fewer fields than what the fieldManager previously
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Mar 06 00:00:21 UTC 2024
    - 13.3K bytes
    - Viewed (0)
  9. pkg/spiffe/spiffe.go

    		m, err := ParseIdentity(id)
    		if err != nil {
    			spiffeLog.Errorf("Failed to extract SPIFFE trust domain from %v: %v", id, err)
    			continue
    		}
    		for _, td := range trustDomainAliases {
    			m.TrustDomain = td
    			out.Insert(m.String())
    		}
    	}
    	return out
    }
    
    // GetTrustDomainFromURISAN extracts the trust domain part from the URI SAN in the X.509 certificate.
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu May 23 21:07:03 UTC 2024
    - 11.1K bytes
    - Viewed (0)
  10. security/pkg/k8s/chiron/utils_test.go

    	if len(strs) < 2 {
    		return 0, fmt.Errorf("server.URL is invalid: %v", server.URL)
    	}
    	port, err := strconv.Atoi(strs[len(strs)-1])
    	if err != nil {
    		return 0, fmt.Errorf("error to extract port from URL: %v", server.URL)
    	}
    	return port, nil
    }
    
    func initFakeKubeClient(t test.Failer, certificate []byte) kube.CLIClient {
    	client := kube.NewFakeClient()
    	ctx := test.NewContext(t)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 15 03:58:11 UTC 2024
    - 13K bytes
    - Viewed (0)
Back to top