Search Options

Results per page
Sort
Preferred Languages
Advance

Results 121 - 130 of 230 for Extract (1.15 sec)

  1. cmd/erasure-metadata.go

    		CacheControl:     fi.Metadata["cache-control"],
    	}
    
    	if exp, ok := fi.Metadata["expires"]; ok {
    		if t, err := amztime.ParseHeader(exp); err == nil {
    			objInfo.Expires = t.UTC()
    		}
    	}
    
    	// Extract etag from metadata.
    	objInfo.ETag = extractETag(fi.Metadata)
    
    	// Add user tags to the object info
    	tags := fi.Metadata[xhttp.AmzObjectTagging]
    	if len(tags) != 0 {
    		objInfo.UserTags = tags
    	}
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 19.4K bytes
    - Viewed (0)
  2. pkg/test/framework/suite.go

    		"^/work/tests/integration/",
    		"^/work/",
    
    		// Outside of standard Istio  GOPATH
    		".*/istio/tests/integration/",
    	)
    )
    
    // getSettingsFunc is a function used to extract the default settings for the Suite.
    type getSettingsFunc func(string) (*resource.Settings, error)
    
    // mRunFn abstracts testing.M.run, so that the framework itself can be tested.
    type mRunFn func(ctx *suiteContext) int
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 22:12:34 UTC 2024
    - 17.2K bytes
    - Viewed (0)
  3. pilot/pkg/security/authn/policy_applier.go

    	filterConfigProto.DisableClearRouteCache = forSidecar
    
    	// Note: in previous Istio versions, the authn filter also handled PeerAuthentication, to extract principal.
    	// This has been modified to rely on the TCP filter
    
    	return &hcm.HttpFilter{
    		Name:       filters.AuthnFilterName,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 09:47:21 UTC 2024
    - 19.2K bytes
    - Viewed (0)
  4. src/cmd/vendor/github.com/google/pprof/profile/encode.go

    		if m.ID < uint64(len(mappingIds)) {
    			mappingIds[m.ID] = m
    		} else {
    			mappings[m.ID] = m
    		}
    
    		// If this a main linux kernel mapping with a relocation symbol suffix
    		// ("[kernel.kallsyms]_text"), extract said suffix.
    		// It is fairly hacky to handle at this level, but the alternatives appear even worse.
    		const prefix = "[kernel.kallsyms]"
    		if strings.HasPrefix(m.File, prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17.1K bytes
    - Viewed (0)
  5. src/runtime/syscall_windows.go

    	// type because those results must not require write barriers.
    	reflectcall(nil, unsafe.Pointer(c.fn), noescape(goArgs), uint32(c.abiMap.dstStackSize), uint32(c.abiMap.retOffset), uint32(frameSize), &regs)
    
    	// Extract the result.
    	//
    	// There's always exactly one return value, one pointer in size.
    	// If it's on the stack, then we will have reserved space for it
    	// at the end of the frame, otherwise it was passed in a register.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 20:12:46 UTC 2024
    - 16.6K bytes
    - Viewed (0)
  6. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/parsing/GrammarToTree.kt

        private
        fun scriptNodes(tree: LightTree): List<LighterASTNode> {
            // the actual script we want to parse is wrapped into a class initializer block, we need to extract it
    
            val childrenOfWrappingClass = tree.children(toplevelNode(tree, CLASS))
            val wrappingClassBody = childrenOfWrappingClass.expectSingleOfKind(CLASS_BODY)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 22:06:18 UTC 2024
    - 31.2K bytes
    - Viewed (0)
  7. pkg/kube/util.go

    					typeMetadata.APIVersion = "batch/v1"
    				}
    			}
    		}
    	}
    
    	if deployMeta.Name == "" {
    		// if we haven't been able to extract a deployment name, then just give it the pod name
    		deployMeta.Name = pod.Name
    	}
    
    	return deployMeta, typeMetadata
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 06 05:10:23 UTC 2024
    - 18.6K bytes
    - Viewed (0)
  8. pkg/volume/iscsi/iscsi.go

    		klog.Errorf("iscsi: failed to setup")
    	}
    
    	if utilfeature.DefaultFeatureGate.Enabled(features.SELinuxMountReadWriteOncePod) {
    		// The volume must have been mounted in MountDevice with -o context.
    		// TODO: extract from mount table in GetAttributes() to be sure?
    		b.mountedWithSELinuxContext = mounterArgs.SELinuxLabel != ""
    	}
    	return err
    }
    
    type iscsiDiskUnmounter struct {
    	*iscsiDisk
    	mounter    mount.Interface
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 23.4K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/tensorflow/python/py_function_lib.py

            ),
            error_msg=(
                f'Failed to save model "{dst_saved_model_path}",'
                f' signature_def_map: {signature_def_map}, tags: {tags}.'
            ),
        )
    
      # TODO: b/311097139 - Extract calibration related functions into a separate
      # file.
      # LINT.IfChange(run_calibration)
      def run_calibration(
          self,
          saved_model_path: str,
          signature_keys: list[str],
          tags: set[str],
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri May 31 05:32:11 UTC 2024
    - 27.4K bytes
    - Viewed (0)
  10. tensorflow/compiler/mlir/tensorflow/transforms/region_control_flow_to_functional.cc

      if (only_one_return_value) {
        return_types.resize(1);
      }
    
      auto type = FunctionType::get(region.getContext(), input_types, return_types);
    
      // Create new function and extract region body into the function.
      auto outlined_func = builder.create<func::FuncOp>(loc, name, type);
      Region& func_region = outlined_func.getBody();
      func_region.takeBody(region);
      Block& first_block = func_region.front();
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 28.7K bytes
    - Viewed (0)
Back to top