Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 55 for EG (0.03 sec)

  1. src/testing/example.go

    	ok = true
    
    	m := newMatcher(matchString, *match, "-test.run", *skip)
    
    	var eg InternalExample
    	for _, eg = range examples {
    		_, matched, _ := m.fullName(nil, eg.Name)
    		if !matched {
    			continue
    		}
    		ran = true
    		if !runExample(eg) {
    			ok = false
    		}
    	}
    
    	return ran, ok
    }
    
    func sortLines(output string) string {
    	lines := strings.Split(output, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  2. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtDeclarationSymbol.kt

    import org.jetbrains.kotlin.analysis.api.symbols.markers.KaSymbolWithTypeParameters
    
    /**
     * Represents a symbol of declaration which can be directly expressed in source code.
     * Eg, classes, type parameters or functions are [KaDeclarationSymbol], but files and packages are not
     */
    public sealed interface KaDeclarationSymbol : KaSymbol, KaSymbolWithTypeParameters, KaAnnotatedSymbol
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 22 06:28:34 UTC 2024
    - 779 bytes
    - Viewed (0)
  3. platforms/core-configuration/graph-serialization/src/main/kotlin/org/gradle/internal/serialize/graph/codecs/BeanCodec.kt

                }
            }
    
        private
        suspend fun WriteContext.writeBeanOf(beanType: Class<*>, value: Any) {
            writeClass(beanType)
            // TODO - should collect the details of the decoration (eg enabled annotations, etc), and also carry this information with the serialized class reference
            //  instead of separately for each bean
            val generated = value is GeneratedSubclass
            writeBoolean(generated)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 04 18:56:44 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  4. cmd/httprange.go

    	}
    
    	// Trim byte range prefix.
    	byteRangeString := strings.TrimPrefix(rangeString, byteRangePrefix)
    
    	// Check if range string contains delimiter '-', else return error. eg. "bytes=8"
    	sepIndex := strings.Index(byteRangeString, "-")
    	if sepIndex == -1 {
    		return nil, fmt.Errorf("'%s' does not have a valid range value", rangeString)
    	}
    
    	offsetBeginString := byteRangeString[:sepIndex]
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 09 08:44:07 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/lite/stablehlo/transforms/legalize_hlo_conversions/scatter.h

    //
    // Eg 1. An update in canonical form:
    //  * indices shape(A,B,C)
    //  * updates shape(A,B,D,E,F)
    // Then:
    //  * D,E,F are the update window dims [2,3,4]
    //  * C is the index vector dimension
    //  * A,B iterate over the updates and indices
    //
    // If `update_window_dims` are not the trailing dimensions then updates must be
    // transposed.
    //
    // Eg 2. An update in non-canonical form:
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 10.1K bytes
    - Viewed (0)
  6. platforms/core-runtime/base-services/src/main/java/org/gradle/util/internal/GUtil.java

         */
        public static String toConstant(CharSequence string) {
            if (string == null) {
                return null;
            }
            return toWords(string, '_').toUpperCase(Locale.ROOT);
        }
    
        /**
         * Converts an arbitrary string to space-separated words. Eg, camelCase -&gt; camel case, with_underscores -&gt; with underscores
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed May 29 06:47:40 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  7. platforms/core-runtime/logging/src/main/java/org/gradle/util/GUtil.java

         */
        @SuppressWarnings("StringCaseLocaleUsage")
        public static String toConstant(CharSequence string) {
            if (string == null) {
                return null;
            }
            return toWords(string, '_').toUpperCase();
        }
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 28 13:09:37 UTC 2024
    - 21.3K bytes
    - Viewed (0)
  8. tensorflow/compiler/mlir/tfrt/ir/tfrt_fallback_async.td

        op_key: The unique key to identify this op.
        num_args: The number of inputs.
        device: The tensorflow device. eg. "/CPU:0"
        op_attrs: The tensorflow attributes excluding the func attrs.
        op_func_attrs: The func attrs.
        op_name: The tensorflow op name. eg. "tf.AddV2"
    
        Example:
          %out_ch = tfrt_fallback_async.createop(%in_ch) key(0) device("/CPU:0")
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 18 15:01:21 UTC 2024
    - 15.8K bytes
    - Viewed (0)
  9. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/GradleDistribution.java

        <T> T selectOutputWithFailureLogging(T stdout, T stderr);
    
        /**
         * Returns true if this version logs different build outcome messages for tooling API requests that run tasks and to requests that do not run tasks (eg fetch a model).
         */
        boolean isToolingApiLogsConfigureSummary();
    
        /**
         * Returns true if this version generates a build operation that wraps the execution phase
         */
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 20 16:09:27 UTC 2024
    - 6.7K bytes
    - Viewed (0)
  10. pilot/pkg/networking/core/listenertest/match.go

    	FilterChains []FilterChainTest
    
    	// Assert the listener contains these ListenerFilters (in order, if TotalMatch)
    	Filters []string
    
    	// TotalMatch will require that the all elements exactly match (eg, if I have 3 elements in the
    	// check, the listener must as well). Otherwise, we only validate the assertions we provided are
    	// present.
    	TotalMatch bool
    }
    
    type FilterChainTest struct {
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 6.4K bytes
    - Viewed (0)
Back to top