Search Options

Results per page
Sort
Preferred Languages
Advance

Results 51 - 60 of 243 for Extract (0.12 sec)

  1. internal/http/headers.go

    	AmzBucketReplicationStatus    = "X-Amz-Replication-Status"
    
    	// AmzSnowballExtract will trigger unpacking of an archive content
    	AmzSnowballExtract = "X-Amz-Meta-Snowball-Auto-Extract"
    	// MinIOSnowballIgnoreDirs will skip creating empty directory objects.
    	MinIOSnowballIgnoreDirs = "X-Amz-Meta-Minio-Snowball-Ignore-Dirs"
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 28 17:44:56 UTC 2024
    - 10.4K bytes
    - Viewed (0)
  2. tensorflow/compiler/mlir/tf2xla/internal/passes/tpu_sharding_identification_pass.cc

                  func.getArgument(use.getOperandNumber()));
            }
          }
        }
    
        values_to_visit.swap(next_values_to_visit);
      }
    
      return std::nullopt;
    }
    
    // Tries to extract sharding configurations for all inputs by parsing
    // XlaSharding/ TPUPartitionedInput op connected to the operands/arguments. If
    // argument to the `cluster_func` directly feeds into another function call op,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Apr 30 02:01:13 UTC 2024
    - 28.9K bytes
    - Viewed (0)
  3. pilot/pkg/security/authz/model/generator_test.go

    				}
    				return
    			}
    			if diff := cmp.Diff(got, tc.want, protocmp.Transform()); diff != "" {
    				var gotYaml string
    				gotProto, ok := got.(proto.Message)
    				if !ok {
    					t.Fatal("failed to extract proto")
    				}
    				if gotYaml, err = protomarshal.ToYAML(gotProto); err != nil {
    					t.Fatalf("%s: failed to parse yaml: %s", tc.name, err)
    				}
    				t.Errorf("got:\n %v\n but want:\n %v", gotYaml, tc.want)
    			}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Sat Apr 20 01:58:53 UTC 2024
    - 13K bytes
    - Viewed (0)
  4. 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)
  5. 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)
  6. 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)
  7. 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)
  8. 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)
  9. 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)
  10. 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)
Back to top