Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 20 for callName (0.3 sec)

  1. 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)
        is AnalysisStatementFilter.TopLevelElementFilter -> scopes.last().receiver is ObjectOrigin.TopLevelReceiver
    }
    
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 3.9K bytes
    - Viewed (0)
  2. platforms/core-configuration/declarative-dsl-tooling-models/src/main/kotlin/org/gradle/declarative/dsl/evaluation/AnalysisStatementFilter.kt

        }
    
        interface ConfiguringCallFilter : AnalysisStatementFilter
        interface TopLevelElementFilter : AnalysisStatementFilter
        interface NamedCallFilter : AnalysisStatementFilter {
            val callName: String
        }
    
        interface AnalyzeEverythingFilter : AnalysisStatementFilter
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu May 30 12:25:46 UTC 2024
    - 2.5K bytes
    - Viewed (0)
  3. pkg/registry/core/service/storage/storage_test.go

    		} else if pol == api.IPFamilyPolicyPreferDualStack && fams != clus {
    			t.Errorf("%s: expected %d ipFamilies, got %d", callName(before, after), clus, fams)
    		}
    	}
    
    	if before != nil {
    		if before.Spec.ClusterIP != "" {
    			if want, got := before.Spec.ClusterIP, after.Spec.ClusterIP; want != got {
    				t.Errorf("%s: wrong clusterIP: wanted %q, got %q", callName(before, after), want, got)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Apr 24 18:25:29 UTC 2024
    - 440.2K bytes
    - Viewed (0)
  4. internal/config/callhome/callhome.go

    		Value: "24h",
    	},
    }
    
    // callhomeCycleDefault is the default interval between two callhome cycles (24hrs)
    const callhomeCycleDefault = 24 * time.Hour
    
    // Config represents the subnet related configuration
    type Config struct {
    	// Flag indicating whether callhome is enabled.
    	Enable bool `json:"enable"`
    
    	// The interval between callhome cycles
    	Frequency time.Duration `json:"frequency"`
    }
    
    var configLock sync.RWMutex
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 2.6K bytes
    - Viewed (0)
  5. cmd/callhome.go

    // initCallhome will start the callhome task in the background.
    func initCallhome(ctx context.Context, objAPI ObjectLayer) {
    	if !globalCallhomeConfig.Enabled() {
    		return
    	}
    
    	go func() {
    		r := rand.New(rand.NewSource(time.Now().UnixNano()))
    		// Leader node (that successfully acquires the lock inside runCallhome)
    		// will keep performing the callhome. If the leader goes down for some reason,
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 17 16:53:34 UTC 2024
    - 5.3K bytes
    - Viewed (0)
  6. internal/config/callhome/help.go

    // along with this program.  If not, see <http://www.gnu.org/licenses/>.
    
    package callhome
    
    import "github.com/minio/minio/internal/config"
    
    var (
    	defaultHelpPostfix = func(key string) string {
    		return config.DefaultHelpPostfix(DefaultKVS, key)
    	}
    
    	// HelpCallhome - provides help for callhome config
    	HelpCallhome = config.HelpKVS{
    		config.HelpKV{
    			Key:         Enable,
    			Type:        "on|off",
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Jun 06 23:14:52 UTC 2022
    - 1.4K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_386.s

    	BSWAPL	DI
    	XORL	SI, DI	// find bit differences
    	JEQ	allsame
    	BSRL	DI, CX	// index of highest bit difference
    	SHRL	CX, SI	// move a's bit to bottom
    	ANDL	$1, SI	// mask bit
    	LEAL	-1(SI*2), BX // 1/0 => +1/-1
    	MOVL	BX, (AX)
    	RET
    
    	// all the bytes in common are the same, so we just need
    	// to compare the lengths.
    allsame:
    	XORL	BX, BX
    	XORL	CX, CX
    	TESTL	DX, DX
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 23 21:22:58 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  8. src/internal/bytealg/compare_amd64.s

    di_finish:
    	SHLQ	CX, DI
    
    	BSWAPQ	SI	// reverse order of bytes
    	BSWAPQ	DI
    	XORQ	SI, DI	// find bit differences
    	JEQ	allsame
    	BSRQ	DI, CX	// index of highest bit difference
    	SHRQ	CX, SI	// move a's bit to bottom
    	ANDQ	$1, SI	// mask bit
    	LEAQ	-1(SI*2), AX // 1/0 => +1/-1
    	RET
    
    allsame:
    	XORQ	AX, AX
    	XORQ	CX, CX
    	CMPQ	BX, DX
    	SETGT	AX	// 1 if alen > blen
    	SETEQ	CX	// 1 if alen == blen
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  9. cmd/config-current.go

    		if _, err := subnet.LookupConfig(s[config.SubnetSubSys][config.Default], nil); err != nil {
    			return err
    		}
    	case config.CallhomeSubSys:
    		cfg, err := callhome.LookupConfig(s[config.CallhomeSubSys][config.Default])
    		if err != nil {
    			return err
    		}
    		// callhome cannot be enabled if license is not registered yet, throw an error.
    		if cfg.Enabled() && !globalSubnetConfig.Registered() {
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 08:14:58 UTC 2024
    - 30.8K bytes
    - Viewed (0)
  10. tensorflow/compiler/jit/compilability_check_util.cc

        absl::string_view call_name) {
      std::vector<NameAttrList> attr_lists;
      TF_RETURN_IF_ERROR(GetNodeAttr(node.attrs(), attr_name, &attr_lists));
    
      std::vector<NodeDef> out;
      out.reserve(attr_lists.size());
      for (int i = 0; i < attr_lists.size(); i++) {
        out.emplace_back();
        NodeDef& inserted = out.back();
        inserted.set_name(absl::StrCat(call_name, "_", i));
        inserted.set_op(attr_lists[i].name());
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Mar 12 06:33:33 UTC 2024
    - 30.3K bytes
    - Viewed (0)
Back to top