Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 11 for callName (0.23 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. 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)
  7. 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)
  8. cmd/globals.go

    	globalLocalNodeNameHex string
    	globalNodeNamesHex     = make(map[string]struct{})
    
    	// The global subnet config
    	globalSubnetConfig subnet.Config
    
    	// The global callhome config
    	globalCallhomeConfig callhome.Config
    
    	// The global drive config
    	globalDriveConfig drive.Config
    
    	// The global cache config
    	globalCacheConfig cache.Config
    
    	// Global server's network statistics
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu May 30 11:58:12 UTC 2024
    - 16.4K bytes
    - Viewed (0)
  9. cmd/admin-handlers-config-kv.go

    		}
    		return
    	}
    
    	if result.Dynamic {
    		applyDynamic(ctx, objectAPI, result.Cfg, result.SubSys, r, w)
    		// If logger webhook config updated (proxy due to callhome), explicitly dynamically
    		// apply the config
    		if result.LoggerWebhookCfgUpdated {
    			applyDynamic(ctx, objectAPI, result.Cfg, config.LoggerWebhookSubSys, r, w)
    		}
    	}
    
    	writeSuccessResponseHeadersOnly(w)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Fri May 24 23:05:23 UTC 2024
    - 15.7K bytes
    - Viewed (0)
  10. src/os/os_windows_test.go

    		// http://daviddeley.com/autohotkey/parameters/parameters.htm#WINARGV
    		// from 5.4  Examples
    		` CallMeIshmael`,
    		` "Call Me Ishmael"`,
    		` Cal"l Me I"shmael`,
    		` CallMe\"Ishmael`,
    		` "CallMe\"Ishmael"`,
    		` "Call Me Ishmael\\"`,
    		` "CallMe\\\"Ishmael"`,
    		` a\\\b`,
    		` "a\\\b"`,
    		// from 5.5  Some Common Tasks
    		` "\"Call Me Ishmael\""`,
    		` "C:\TEST A\\"`,
    		` "\"C:\TEST A\\\""`,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 23 01:00:11 UTC 2024
    - 41.8K bytes
    - Viewed (0)
Back to top