Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 1,348 for logical (0.15 sec)

  1. src/runtime/symtab.go

    	for datap.ftab[idx+1].entryoff <= pcOff {
    		idx++
    	}
    
    	funcoff := datap.ftab[idx].funcoff
    	return funcInfo{(*_func)(unsafe.Pointer(&datap.pclntable[funcoff])), datap}
    }
    
    // A srcFunc represents a logical function in the source code. This may
    // correspond to an actual symbol in the binary text, or it may correspond to a
    // source function that has been inlined.
    type srcFunc struct {
    	datap     *moduledata
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 40K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/ImmutableMap.java

        return false;
      }
    
      @Override
      public String toString() {
        return Maps.toStringImpl(this);
      }
    
      /**
       * Serialized type for all ImmutableMap instances. It captures the logical contents and they are
       * reconstructed using public factory methods. This ensures that the implementation types remain
       * as implementation details.
       */
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Tue Apr 30 14:39:16 UTC 2024
    - 44.6K bytes
    - Viewed (0)
  3. src/internal/trace/internal/oldtrace/parser.go

    	// timestamp is the second argument, not the first; adding 1 happens to come
    	// up with the correct number, but it doesn't matter, because EvBatch has
    	// custom logic for parsing.
    	//
    	// Note that because we're adding 1, inlineArgs == 3 describes the largest
    	// number of logical arguments that isn't length-prefixed, even though the
    	// value 3 on the wire indicates length-prefixing. For us, that becomes narg
    	// == 4.
    	narg := b>>6 + 1
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  4. src/cmd/compile/internal/ssa/_gen/rulegen.go

    		last = w.List[len(w.List)-1]
    	}
    	if node, ok := node.(*CondBreak); ok {
    		w.CanFail = true
    		if last, ok := last.(*CondBreak); ok {
    			// Add to the previous "if <cond> { break }" via a
    			// logical OR, which will save verbosity.
    			last.Cond = &ast.BinaryExpr{
    				Op: token.LOR,
    				X:  last.Cond,
    				Y:  node.Cond,
    			}
    			return
    		}
    	}
    
    	w.List = append(w.List, node)
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sat Sep 02 22:09:21 UTC 2023
    - 48.7K bytes
    - Viewed (0)
  5. pkg/volume/local/local.go

    	if spec.PersistentVolume.Spec.Local == nil || len(spec.PersistentVolume.Spec.Local.Path) == 0 {
    		return fmt.Errorf("local volume source is nil or local path is not set")
    	}
    	fileType, err := dm.hostUtil.GetFileType(spec.PersistentVolume.Spec.Local.Path)
    	if err != nil {
    		return err
    	}
    
    	switch fileType {
    	case hostutil.FileTypeBlockDev:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue May 14 06:17:25 UTC 2024
    - 22.2K bytes
    - Viewed (0)
  6. cmd/kubeadm/app/phases/etcd/local.go

    		return err
    	}
    
    	klog.V(1).Infof("[etcd] wrote Static Pod manifest for a local etcd member to %q\n", kubeadmconstants.GetStaticPodFilepath(kubeadmconstants.Etcd, manifestDir))
    	return nil
    }
    
    // CheckLocalEtcdClusterStatus verifies health state of local/stacked etcd cluster before installing a new etcd member
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Apr 23 14:07:27 UTC 2024
    - 13.8K bytes
    - Viewed (1)
  7. cmd/local-locker.go

    	}
    	return lockCopy
    }
    
    func (l *localLocker) Close() error {
    	return nil
    }
    
    // IsOnline - local locker is always online.
    func (l *localLocker) IsOnline() bool {
    	return true
    }
    
    // IsLocal - local locker returns true.
    func (l *localLocker) IsLocal() bool {
    	return true
    }
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Mon Feb 19 22:54:46 UTC 2024
    - 10.6K bytes
    - Viewed (0)
  8. cmd/local-locker_gen.go

    Krishnan Parthasarathi <******@****.***> 1711041695 -0700
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Thu Mar 21 17:21:35 UTC 2024
    - 13.8K bytes
    - Viewed (0)
  9. cmd/local-locker_test.go

    ferhat elmas <******@****.***> 1677992255 +0100
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sun Mar 05 04:57:35 UTC 2023
    - 11.8K bytes
    - Viewed (0)
  10. platforms/documentation/docs/src/docs/userguide/authoring-builds/plugins/custom_plugins.adoc

    │   │   └──...
    │   └── build.gradle.kts
    └── settings.gradle.kts
    ----
    
    The build file of the `database-logic` subproject is as follows:
    
    ====
    include::sample[dir="snippets/plugins/pluginProject/kotlin",files="database-logic/build.gradle.kts[]"]
    include::sample[dir="snippets/plugins/pluginProject/groovy",files="database-logic/build.gradle[]"]
    ====
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Apr 25 21:49:49 UTC 2024
    - 14.8K bytes
    - Viewed (0)
Back to top