Search Options

Results per page
Sort
Preferred Languages
Advance

Results 71 - 80 of 134 for denormalize (0.24 sec)

  1. testing/internal-testing/src/main/groovy/org/gradle/util/Matchers.java

                }
    
                @Override
                public void describeTo(Description description) {
                    matcher.describeTo(description);
                    description.appendText(" (normalize line separators)");
                }
            };
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 6.8K bytes
    - Viewed (0)
  2. src/cmd/vendor/github.com/google/pprof/profile/merge.go

    			// them.
    			return Merge([]*Profile{p})
    		}
    	}
    
    	return p, nil
    }
    
    // Normalize normalizes the source profile by multiplying each value in profile by the
    // ratio of the sum of the base profile's values of that sample type to the sum of the
    // source profile's value of that sample type.
    func (p *Profile) Normalize(pb *Profile) error {
    
    	if err := p.compatible(pb); err != nil {
    		return err
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 16 15:19:53 UTC 2024
    - 17K bytes
    - Viewed (0)
  3. pkg/kubelet/config/config.go

    // consistent structure, and then delivers incremental change notifications to listeners
    // in order.
    type PodConfig struct {
    	pods *podStorage
    	mux  *mux
    
    	// the channel of denormalized changes passed to listeners
    	updates chan kubetypes.PodUpdate
    
    	// contains the list of all configured sources
    	sourcesLock sync.Mutex
    	sources     sets.Set[string]
    }
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Jun 04 06:25:43 UTC 2024
    - 16.7K bytes
    - Viewed (0)
  4. okhttp/src/main/kotlin/okhttp3/internal/tls/OkHostnameVerifier.kt

          return false
        }
        if (pattern.isNullOrEmpty() ||
          pattern.startsWith(".") ||
          pattern.endsWith("..")
        ) {
          // Invalid pattern.
          return false
        }
    
        // Normalize hostname and pattern by turning them into absolute domain names if they are not
        // yet absolute. This is needed because server certificates do not normally contain absolute
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Apr 15 14:55:09 UTC 2024
    - 7.7K bytes
    - Viewed (0)
  5. src/main/java/org/codelibs/fess/app/web/admin/wizard/AdminWizardAction.java

            String configPath = form.crawlingConfigPath.trim();
            if (StringUtil.isBlank(configName)) {
                configName = StringUtils.abbreviate(configPath, 30);
            }
    
            // normalize
            final StringBuilder buf = new StringBuilder(1000);
            for (int i = 0; i < configPath.length(); i++) {
                final char c = configPath.charAt(i);
                if (c == '\\') {
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Thu Feb 22 01:37:57 UTC 2024
    - 12.7K bytes
    - Viewed (0)
  6. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

                  scatter_op.getUpdateComputation()))) {
            return failure();
          }
    
          auto scatter_dimension_numbers = scatter_op.getScatterDimensionNumbers();
    
          // Normalize indices so index_vector_dim == indices.rank() - 1.
          int64_t index_vector_dim = scatter_dimension_numbers.getIndexVectorDim();
          if (failed(NormalizeIndexVector(scatter_op, indices, indices_type,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  7. platforms/core-runtime/base-services/src/main/java/org/gradle/internal/FileUtils.java

        }
    
        /**
         * Normalizes the given file, removing redundant segments like /../. If normalization
         * tries to step beyond the file system root, the root is returned.
         */
        public static File normalize(File src) {
            String path = src.getAbsolutePath();
            String normalizedPath = FilenameUtils.normalizeNoEndSeparator(path);
            if (normalizedPath != null) {
                return new File(normalizedPath);
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 8.2K bytes
    - Viewed (0)
  8. src/cmd/vendor/github.com/google/pprof/internal/driver/fetch.go

    	if err != nil {
    		return nil, err
    	}
    
    	if pbase != nil {
    		if s.DiffBase {
    			pbase.SetLabel("pprof::base", []string{"true"})
    		}
    		if s.Normalize {
    			err := p.Normalize(pbase)
    			if err != nil {
    				return nil, err
    			}
    		}
    		pbase.Scale(-1)
    		p, m, err = combineProfiles([]*profile.Profile{p, pbase}, []plugin.MappingSources{m, mbase})
    		if err != nil {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 19K bytes
    - Viewed (0)
  9. src/main/java/org/codelibs/fess/suggest/request/suggest/SuggestRequest.java

                        final String query;
                        if (normalizer == null) {
                            query = queries[i];
                        } else {
                            query = normalizer.normalize(queries[i], "", langsArray);
                        }
    
                        if (readingConverter == null) {
                            readingList.add(query);
                        } else {
    Registered: Wed Jun 12 15:38:08 UTC 2024
    - Last Modified: Thu Feb 22 01:36:54 UTC 2024
    - 13.4K bytes
    - Viewed (0)
  10. pilot/pkg/model/extensions.go

    		return nil
    	}
    	// when no scheme is given, default to oci://
    	if u.Scheme == "" {
    		u.Scheme = ociScheme
    	}
    	// Normalize the image pull secret to the full resource name.
    	wasmPlugin.ImagePullSecret = toSecretResourceName(wasmPlugin.ImagePullSecret, plugin.Namespace)
    	return &WasmPluginWrapper{
    		Name:            plugin.Name,
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed Apr 17 22:20:44 UTC 2024
    - 11K bytes
    - Viewed (0)
Back to top