Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 24 for dfac (0.05 sec)

  1. cmd/kubeadm/app/preflight/checks.go

    	if fac.Label != "" {
    		return fac.Label
    	}
    	return fmt.Sprintf("FileExisting-%s", strings.Replace(fac.Path, "/", "-", -1))
    }
    
    // Check validates if the given file already exists.
    func (fac FileExistingCheck) Check() (warnings, errorList []error) {
    	klog.V(1).Infof("validating the existence of file %s", fac.Path)
    
    	if _, err := os.Stat(fac.Path); err != nil {
    		return nil, []error{errors.Errorf("%s doesn't exist", fac.Path)}
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 03 11:20:55 UTC 2024
    - 39.5K bytes
    - Viewed (0)
  2. src/strconv/ftoaryu.go

    	extra := uint(-dexp2)
    	extraMask := uint32(1<<extra - 1)
    
    	di, dfrac := di>>extra, di&extraMask
    	roundUp := false
    	if exact {
    		// If we computed an exact product, d + 1/2
    		// should round to d+1 if 'd' is odd.
    		roundUp = dfrac > 1<<(extra-1) ||
    			(dfrac == 1<<(extra-1) && !d0) ||
    			(dfrac == 1<<(extra-1) && d0 && di&1 == 1)
    	} else {
    		// otherwise, d+1/2 always rounds up because
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 09 00:28:56 UTC 2022
    - 15.7K bytes
    - Viewed (0)
  3. istioctl/pkg/util/configdump/cluster.go

    	clusterDump, err := w.GetClusterConfigDump()
    	if err != nil {
    		return nil, err
    	}
    	dac := clusterDump.GetDynamicActiveClusters()
    	// Allow sorting to work even if we don't have the exact same type
    	for i := range dac {
    		dac[i].Cluster.TypeUrl = v3.ClusterType
    	}
    	sort.Slice(dac, func(i, j int) bool {
    		cluster := &cluster.Cluster{}
    		err = dac[i].Cluster.UnmarshalTo(cluster)
    		if err != nil {
    			return false
    		}
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Nov 03 08:41:32 UTC 2022
    - 2.1K bytes
    - Viewed (0)
  4. analysis/analysis-api-fir/src/org/jetbrains/kotlin/analysis/api/fir/components/KtFirDataFlowInfoProvider.kt

    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.AnonymousObjectExpressionExitNode
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.CFGNode
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.CFGNodeWithSubgraphs
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.ControlFlowGraph
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.DelegateExpressionExitNode
    import org.jetbrains.kotlin.fir.resolve.dfa.cfg.ElvisExitNode
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Wed Jun 05 14:04:46 UTC 2024
    - 22.9K bytes
    - Viewed (0)
  5. cni/pkg/plugin/plugin_cni_conformance.go

    		"K8S_POD_NAME=istio-sidecar-injector-8489cf78fb-48pvg;" +
    		"K8S_POD_INFRA_CONTAINER_ID=3c41e946cf17a32760ff86940a73b06982f1815e9083cf2f4bfccb9b7605f326" +
    		"K8S_POD_UID=a09038c7-df3c-4c0e-8667-487b1fe8055f"
    
    	k8sArgs := K8sArgs{}
    	if err := types.LoadArgs(kubeletArgs, &k8sArgs); err != nil {
    		t.Fatalf("LoadArgs failed with error: %v", err)
    	}
    
    	if string(k8sArgs.K8S_POD_NAMESPACE) == "" ||
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Wed May 29 21:50:09 UTC 2024
    - 1.5K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/cmd/phases/reset/cleanupnode_test.go

    		t.Errorf("file/dir exists: %s", path)
    	}
    }
    
    // assertDirEmpty verifies a directory either does not exist, or is empty.
    func assertDirEmpty(t *testing.T, path string) {
    	dac := preflight.DirAvailableCheck{Path: path}
    	_, errors := dac.Check()
    	if len(errors) != 0 {
    		t.Errorf("directory not empty: [%v]", errors)
    	}
    }
    
    func TestConfigDirCleaner(t *testing.T) {
    	tests := map[string]struct {
    		resetDir        string
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed May 29 06:58:01 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  7. platforms/software/antlr/src/integTest/groovy/org/gradle/api/plugins/antlr/IncrementalAntlrTaskIntegrationTest.groovy

            def test1ParserFileSnapshot = test1ParserFile.snapshot()
    
            buildFile << """
                project(":grammar-builder") {
                    generateGrammarSource {
                        arguments << '-dfa'
                    }
                }
            """
    
            then:
            succeeds("generateGrammarSource")
            test1TokenFile.assertHasChangedSince(test1TokensFileSnapshot)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 14 14:52:10 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  8. src/internal/poll/fd_unix.go

    		return 0, 0, 0, nil, err
    	}
    	for {
    		n, oobn, sysflags, sa, err := syscall.Recvmsg(fd.Sysfd, p, oob, flags)
    		if err != nil {
    			if err == syscall.EINTR {
    				continue
    			}
    			// TODO(dfc) should n and oobn be set to 0
    			if err == syscall.EAGAIN && fd.pd.pollable() {
    				if err = fd.pd.waitRead(fd.isFile); err == nil {
    					continue
    				}
    			}
    		}
    		err = fd.eofError(n, err)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 04:09:44 UTC 2024
    - 17.9K bytes
    - Viewed (0)
  9. fess-crawler/src/main/resources/org/codelibs/fess/crawler/mime/tika-mimetypes.xml

      <mime-type type="application/vnd.dolby.mobile.2"/>
      <mime-type type="application/vnd.dpgraph">
        <glob pattern="*.dpg"/>
      </mime-type>
      <mime-type type="application/vnd.dreamfactory">
        <glob pattern="*.dfac"/>
      </mime-type>
      <mime-type type="application/vnd.dvb.esgcontainer"/>
      <mime-type type="application/vnd.dvb.ipdcdftnotifaccess"/>
      <mime-type type="application/vnd.dvb.ipdcesgaccess"/>
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Sep 21 06:46:43 UTC 2023
    - 298.5K bytes
    - Viewed (0)
  10. docs/vi/docs/python-types.md

    # Giới thiệu kiểu dữ liệu Python
    
    Python hỗ trợ tùy chọn "type hints" (còn được gọi là "type annotations").
    
    Những **"type hints"** hay chú thích là một cú pháp đặc biệt cho phép khai báo <abbr title="ví dụ: str, int, float, bool"> kiểu dữ liệu</abbr> của một biến.
    
    Bằng việc khai báo kiểu dữ liệu cho các biến của bạn, các trình soạn thảo và các công cụ có thể hỗ trợ bạn tốt hơn.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 21.9K bytes
    - Viewed (0)
Back to top