Search Options

Results per page
Sort
Preferred Languages
Advance

Results 61 - 70 of 91 for scope_ (0.14 sec)

  1. pilot/pkg/networking/core/listener.go

    			protocolName(c.newProtocol),
    			c.newHostname))
    }
    
    // buildSidecarOutboundListeners generates http and tcp listeners for
    // outbound connections from the proxy based on the sidecar scope associated with the proxy.
    func (lb *ListenerBuilder) buildSidecarOutboundListeners(node *model.Proxy,
    	push *model.PushContext,
    ) []*listener.Listener {
    	noneMode := node.GetInterceptionMode() == model.InterceptionNone
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon May 06 04:44:06 UTC 2024
    - 55.1K bytes
    - Viewed (0)
  2. tests/migrate_test.go

    				t.Fatalf("Failed to get table %v when GetTables", t1)
    			}
    		}
    	}
    
    	for _, m := range allModels {
    		if !DB.Migrator().HasTable(m) {
    			t.Fatalf("Failed to create table for %#v", m)
    		}
    	}
    
    	DB.Scopes(func(db *gorm.DB) *gorm.DB {
    		return db.Table("ccc")
    	}).Migrator().CreateTable(&Company{})
    
    	if !DB.Migrator().HasTable("ccc") {
    		t.Errorf("failed to create table ccc")
    	}
    
    	for _, indexes := range [][2]string{
    Registered: Wed Jun 12 16:27:09 UTC 2024
    - Last Modified: Mon Mar 18 11:24:16 UTC 2024
    - 56.2K bytes
    - Viewed (0)
  3. staging/src/k8s.io/apiserver/pkg/endpoints/installer.go

    		}
    		scoper, ok := parentStorage.(rest.Scoper)
    		if !ok {
    			return nil, nil, fmt.Errorf("%q must implement scoper", resource)
    		}
    		namespaceScoped = scoper.NamespaceScoped()
    
    	} else {
    		scoper, ok := storage.(rest.Scoper)
    		if !ok {
    			return nil, nil, fmt.Errorf("%q must implement scoper", resource)
    		}
    		namespaceScoped = scoper.NamespaceScoped()
    	}
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 18:15:22 UTC 2024
    - 51.5K bytes
    - Viewed (0)
  4. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Causes a trace (including the source file path, the current line
    // number, and the given message) to be included in every test failure
    // message generated by code in the current scope.  The effect is
    // undone when the control leaves the current scope.
    //
    // The message argument can be anything streamable to std::ostream.
    //
    // In the implementation, we include the current line number as part
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 86.4K bytes
    - Viewed (0)
  5. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest.h

    // Causes a trace (including the source file path, the current line
    // number, and the given message) to be included in every test failure
    // message generated by code in the current scope.  The effect is
    // undone when the control leaves the current scope.
    //
    // The message argument can be anything streamable to std::ostream.
    //
    // In the implementation, we include the current line number as part
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 86.4K bytes
    - Viewed (0)
  6. platforms/documentation/docs/src/docs/userguide/dep-man/01-core-dependency-management/dependency_verification.adoc

    With such a minimal configuration file, a project using _any_ external dependency or plugin would immediately start failing because it doesn't contain any checksum to verify.
    
    [[sec:verification-scope]]
    === Scope of the dependency verification
    
    A dependency verification configuration is _global_: a single file is used to configure verification of the whole build.
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Wed Feb 07 20:36:31 UTC 2024
    - 56.7K bytes
    - Viewed (0)
  7. subprojects/core/src/main/java/org/gradle/api/internal/project/DefaultProject.java

    import org.gradle.internal.service.Provides;
    import org.gradle.internal.service.ServiceRegistrationProvider;
    import org.gradle.internal.service.ServiceRegistry;
    import org.gradle.internal.service.scopes.ServiceRegistryFactory;
    import org.gradle.internal.typeconversion.TypeConverter;
    import org.gradle.listener.ClosureBackedMethodInvocationDispatch;
    import org.gradle.model.Model;
    import org.gradle.model.RuleSource;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon May 27 12:34:44 UTC 2024
    - 50.2K bytes
    - Viewed (0)
  8. testing/performance/src/templates/native-dependents-resources/googleTest/libs/googleTest/1.7.0/include/gtest/internal/gtest-port.h

      GTEST_WARNING,
      GTEST_ERROR,
      GTEST_FATAL
    };
    
    // Formats log entry severity, provides a stream object for streaming the
    // log message, and terminates the message with a newline when going out of
    // scope.
    class GTEST_API_ GTestLog {
     public:
      GTestLog(GTestLogSeverity severity, const char* file, int line);
    
      // Flushes the buffers and, if severity is GTEST_FATAL, aborts the program.
      ~GTestLog();
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 04 07:21:38 UTC 2024
    - 67.2K bytes
    - Viewed (0)
  9. tensorflow/compiler/mlir/quantization/stablehlo/python/integration_test/quantize_model_test.py

        if has_batch_norm and (bias_fn or not input_shape_dynamic):
          return
    
        # TODO: b/331120943 - Re-enable this after correctly handling quantization
        # granularity per quantizable scope.
        if has_batch_norm and (not bias_fn and input_shape_dynamic):
          return
    
        # Generate model input data.
        rng = np.random.default_rng(seed=42)
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue May 14 06:31:57 UTC 2024
    - 51.4K bytes
    - Viewed (0)
  10. testing/internal-integ-testing/src/main/groovy/org/gradle/integtests/fixtures/executer/AbstractGradleExecuter.java

    import static org.gradle.integtests.fixtures.executer.AbstractGradleExecuter.CliDaemonArgument.NO_DAEMON;
    import static org.gradle.internal.service.scopes.DefaultGradleUserHomeScopeServiceRegistry.REUSE_USER_HOME_SERVICES;
    import static org.gradle.util.internal.CollectionUtils.collect;
    import static org.gradle.util.internal.CollectionUtils.join;
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Jun 11 09:51:15 UTC 2024
    - 55.1K bytes
    - Viewed (0)
Back to top