Search Options

Results per page
Sort
Preferred Languages
Advance

Results 21 - 30 of 860 for asStatement (0.15 sec)

  1. subprojects/core/src/main/java/org/gradle/groovy/scripts/internal/InitialPassStatementTransformer.java

                    scriptTarget.getClasspathBlockName(), PLUGINS
                );
                addSyntaxError(message, sourceUnit, statement);
            }
            seenClasspathBlock = true;
            return statement;
        }
    
        private Statement transformPluginsBlock(ScriptBlock scriptBlock, SourceUnit sourceUnit, Statement statement) {
            String failMessage = null;
    
            if (!scriptTarget.getSupportsPluginsBlock()) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Apr 19 11:25:50 UTC 2023
    - 6.6K bytes
    - Viewed (0)
  2. chainable_api.go

    			j := join{
    				Name: query, Conds: args, Selects: db.Statement.Selects,
    				Omits: db.Statement.Omits, JoinType: joinType,
    			}
    			if where, ok := db.Statement.Clauses["WHERE"].Expression.(clause.Where); ok {
    				j.On = &where
    			}
    			tx.Statement.Joins = append(tx.Statement.Joins, j)
    			return
    		}
    	}
    
    	tx.Statement.Joins = append(tx.Statement.Joins, join{Name: query, Conds: args, JoinType: joinType})
    	return
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Wed Jun 12 09:47:34 UTC 2024
    - 14.5K bytes
    - Viewed (0)
  3. testing/internal-performance-testing/src/main/groovy/org/gradle/performance/results/CrossVersionResultsStore.java

                statement.setString(6, results.getTestProject());
                statement.setObject(7, toArray(results.getTasks()));
                statement.setObject(8, toArray(results.getArgs()));
                statement.setObject(9, toArray(results.getGradleOpts()));
                statement.setBoolean(10, results.getDaemon());
                statement.setString(11, results.getOperatingSystem());
                statement.setString(12, results.getJvm());
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 20K bytes
    - Viewed (0)
  4. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheToolingApiInvocationIntegrationTest.groovy

                    id("java")
                }
                println("script log statement")
            """
    
            when:
            configurationCacheRun("assemble")
    
            then:
            outputContains("script log statement")
    
            when:
            configurationCacheRun("assemble")
    
            then:
            outputDoesNotContain("script log statement")
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 6.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
        EXPECT_DEATH(statement, regex)
    # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
        ASSERT_DEATH(statement, regex)
    #else
    # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
        GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, )
    # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
        GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return)
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 11.3K bytes
    - Viewed (0)
  6. gorm.go

    		if db.clone == 1 {
    			// clone with new statement
    			tx.Statement = &Statement{
    				DB:        tx,
    				ConnPool:  db.Statement.ConnPool,
    				Context:   db.Statement.Context,
    				Clauses:   map[string]clause.Clause{},
    				Vars:      make([]interface{}, 0, 8),
    				SkipHooks: db.Statement.SkipHooks,
    			}
    		} else {
    			// with clone statement
    			tx.Statement = db.Statement.clone()
    			tx.Statement.DB = tx
    		}
    
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Sun Aug 20 11:46:56 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  7. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/AnalysisStatementFilter.kt

        is AnalysisStatementFilter.ConfiguringCallFilter -> statement is FunctionCall && statement.args.singleOrNull() is FunctionArgument.Lambda
        is AnalysisStatementFilter.NamedCallFilter -> statement is FunctionCall && statement.name == callName
        is AnalysisStatementFilter.NotFilter -> !negationOf.shouldAnalyzeStatement(statement, scopes)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest-death-test.h

    # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
        EXPECT_DEATH(statement, regex)
    # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
        ASSERT_DEATH(statement, regex)
    #else
    # define EXPECT_DEATH_IF_SUPPORTED(statement, regex) \
        GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, )
    # define ASSERT_DEATH_IF_SUPPORTED(statement, regex) \
        GTEST_UNSUPPORTED_DEATH_TEST_(statement, regex, return)
    #endif
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 11.3K bytes
    - Viewed (0)
  9. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/internal/gtest-death-test-internal.h

    GTEST_API_ bool ExitedUnsuccessfully(int exit_status);
    
    // Traps C++ exceptions escaping statement and reports them as test
    // failures. Note that trapping SEH exceptions is not implemented here.
    # if GTEST_HAS_EXCEPTIONS
    #  define GTEST_EXECUTE_DEATH_TEST_STATEMENT_(statement, death_test) \
      try { \
        GTEST_SUPPRESS_UNREACHABLE_CODE_WARNING_BELOW_(statement); \
      } catch (const ::std::exception& gtest_exception) { \
        fprintf(\
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 13.1K bytes
    - Viewed (0)
  10. src/cmd/compile/internal/syntax/testdata/fallthrough.go

    func _() {
    	var x int
    	switch x {
    	case 0:
    		fallthrough
    
    	case 1:
    		fallthrough // ERROR fallthrough statement out of place
    		{
    		}
    
    	case 2:
    		{
    			fallthrough // ERROR fallthrough statement out of place
    		}
    
    	case 3:
    		for {
    			fallthrough // ERROR fallthrough statement out of place
    		}
    
    	case 4:
    		fallthrough // trailing empty statements are ok
    		;
    		;
    
    	case 5:
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Jun 26 00:21:29 UTC 2022
    - 946 bytes
    - Viewed (0)
Back to top