Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 77 for nextId (0.42 sec)

  1. src/regexp/syntax/parse.go

    			nextLo = c + 1
    		}
    	}
    	for _, xr := range x.R32 {
    		lo, hi, stride := rune(xr.Lo), rune(xr.Hi), rune(xr.Stride)
    		if stride == 1 {
    			if nextLo <= lo-1 {
    				r = appendRange(r, nextLo, lo-1)
    			}
    			nextLo = hi + 1
    			continue
    		}
    		for c := lo; c <= hi; c += stride {
    			if nextLo <= c-1 {
    				r = appendRange(r, nextLo, c-1)
    			}
    			nextLo = c + 1
    		}
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 02 13:59:01 UTC 2024
    - 52.1K bytes
    - Viewed (0)
  2. src/encoding/xml/marshal_test.go

    			},
    		},
    		ExpectXML: `<a><nested><value>known</value></nested><AnyField><unknown/></AnyField></a>`,
    	},
    	{
    		ExpectXML: `<a><nested><value>b</value></nested></a>`,
    		Value: &AnyOmitTest{
    			Nested: "b",
    		},
    	},
    	{
    		ExpectXML: `<a><nested><value>b</value></nested><c><d>e</d></c><g xmlns="f"><h>i</h></g></a>`,
    		Value: &AnySliceTest{
    			Nested: "b",
    			AnyField: []AnyHolder{
    				{
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 08 18:46:41 UTC 2024
    - 66K bytes
    - Viewed (0)
  3. internal/s3select/select_test.go

    			wantResult: `{"nested":[[2,3,4],[7,8.5,9]]}`,
    		},
    		{
    			name:       "select-in-combine-and-no",
    			query:      `SELECT s.nested from s3object s WHERE (8.5 IN s.nested[*][*]) AND (s.id = 0)`,
    			wantResult: ``,
    		},
    		{
    			name:       "select-in-nested-float-no-flat",
    			query:      `SELECT s.nested from s3object s WHERE 8.5 IN s.nested[*]`,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat Dec 23 07:19:11 UTC 2023
    - 76.2K bytes
    - Viewed (0)
  4. platforms/software/dependency-management/src/integTest/groovy/org/gradle/integtests/resolve/transform/ArtifactTransformBuildOperationIntegrationTest.groovy

            result.groupedOutput.transform("MakeGreen", "nested-producer.jar (project :included:nested-producer)")
                .assertOutputContains("processing [nested-producer.jar]")
    
            result.groupedOutput.task(":consumer:resolve")
                .assertOutputContains("result = [producer.jar.green, nested-producer.jar.green]")
    
            // Included build runs a single task and no transforms
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Fri Apr 12 16:27:38 UTC 2024
    - 67.8K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/docs/userguide/optimizing-performance/incremental_build.adoc

    [[sec:task_input_nested_inputs]]
    === Nested inputs
    
    When analyzing `@link:{javadocPath}/org/gradle/api/tasks/Nested.html[Nested]` task properties for declared input and output sub-properties Gradle uses the type of the actual value.
    Hence it can discover all sub-properties declared by a runtime sub-type.
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Jan 24 23:14:04 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  6. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorTest.java

        public interface InterfaceNestedBean {
            @Nested
            InterfaceFileCollectionBean getFilesBean();
    
            @Nested
            InterfacePropertyBean getPropBean();
        }
    
        public static abstract class NestedBeanClassWithToString {
            @Override
            public String toString() {
                return "<some bean>";
            }
    
            @Nested
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Oct 05 19:36:14 UTC 2023
    - 74.6K bytes
    - Viewed (0)
  7. analysis/analysis-api-fir/tests-gen/org/jetbrains/kotlin/analysis/api/fir/test/cases/generated/cases/references/FirIdeNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.references.AbstractReferenceShortenerTest;
    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.6K bytes
    - Viewed (0)
  8. analysis/analysis-api-standalone/tests-gen/org/jetbrains/kotlin/analysis/api/standalone/fir/test/cases/generated/cases/references/FirStandaloneNormalAnalysisSourceModuleReferenceShortenerTestGenerated.java

    import org.jetbrains.kotlin.analysis.api.impl.base.test.cases.references.AbstractReferenceShortenerTest;
    import org.jetbrains.kotlin.test.TestMetadata;
    import org.junit.jupiter.api.Nested;
    import org.junit.jupiter.api.Test;
    
    import java.io.File;
    import java.util.regex.Pattern;
    
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed May 29 11:41:50 UTC 2024
    - 51.7K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/tensorflow/transforms/resource_op_lifting.cc

            return call_op.emitOpError(
                "resource lifting does not support call with nested references.");
          }
          if (failed(HandlePartitionedCallOp(call_op, callee, module,
                                             vars_initialized,
                                             lifted_partitioned_call_callees))) {
            // Nested control flow handling is done in HandlePartitionedCallOp().
            return failure();
          }
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Apr 25 16:01:03 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/internal/instantiation/generator/AbstractClassGenerator.java

                }
    
                @Override
                public Object newInstance(ServiceLookup services, InstanceGenerator nested) throws InvocationTargetException, IllegalAccessException, InstantiationException {
                    return strategy.newInstance(services, nested, null, NO_PARAMS);
                }
            }
    
            private class GeneratedConstructorImpl implements GeneratedConstructor<Object> {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 06 21:54:37 UTC 2024
    - 63K bytes
    - Viewed (0)
Back to top