Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 20 of 72 for setSlot (0.76 sec)

  1. src/cmd/compile/internal/syntax/scanner.go

    func (s *scanner) errorAtf(offset int, format string, args ...interface{}) {
    	s.errh(s.line, s.col+uint(offset), fmt.Sprintf(format, args...))
    }
    
    // setLit sets the scanner state for a recognized _Literal token.
    func (s *scanner) setLit(kind LitKind, ok bool) {
    	s.nlsemi = true
    	s.tok = _Literal
    	s.lit = string(s.segment())
    	s.bad = !ok
    	s.kind = kind
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 28 18:17:41 UTC 2022
    - 17.1K bytes
    - Viewed (0)
  2. staging/src/k8s.io/apimachinery/pkg/api/apitesting/fuzzer/valuefuzz.go

    			return
    		}
    		switch obj.Kind() {
    		case reflect.String:
    			obj.SetString(obj.String() + "x")
    		case reflect.Bool:
    			obj.SetBool(!obj.Bool())
    		case reflect.Float32, reflect.Float64:
    			obj.SetFloat(obj.Float()*2.0 + 1.0)
    		case reflect.Int8, reflect.Int16, reflect.Int32, reflect.Int64, reflect.Int:
    			obj.SetInt(obj.Int() + 1)
    		case reflect.Uint8, reflect.Uint16, reflect.Uint32, reflect.Uint64, reflect.Uint:
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Jun 25 16:23:43 UTC 2022
    - 2.3K bytes
    - Viewed (0)
  3. src/time/format_rfc3339.go

    			zoneOffset *= -1
    		}
    		t.addSec(-int64(zoneOffset))
    
    		// Use local zone with the given offset if possible.
    		if _, offset, _, _, _ := local.lookup(t.unixSec()); offset == zoneOffset {
    			t.setLoc(local)
    		} else {
    			t.setLoc(FixedZone("", zoneOffset))
    		}
    	}
    	return t, true
    }
    
    func parseStrictRFC3339(b []byte) (Time, error) {
    	t, ok := parseRFC3339(b, Local)
    	if !ok {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jan 18 19:59:26 UTC 2023
    - 5.7K bytes
    - Viewed (0)
  4. fess-crawler/src/main/java/org/codelibs/fess/crawler/entity/SitemapFile.java

        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.Sitemap#getLoc()
         */
        @Override
        public String getLoc() {
            return loc;
        }
    
        public void setLoc(final String loc) {
            this.loc = loc;
        }
    
        /*
         * (non-Javadoc)
         *
         * @see org.codelibs.fess.crawler.entity.Sitemap#getLastmod()
         */
        @Override
    Registered: Wed Jun 12 15:17:51 UTC 2024
    - Last Modified: Thu Feb 22 01:36:27 UTC 2024
    - 2.7K bytes
    - Viewed (0)
  5. src/runtime/sys_linux_386.s

    #define USEABLE 0x40
    
    // `-1` means the kernel will pick a TLS entry on the first setldt call,
    // which happens during runtime init, and that we'll store back the saved
    // entry and reuse that on subsequent calls when creating new threads.
    DATA  runtimeĀ·tls_entry_number+0(SB)/4, $-1
    GLOBL runtimeĀ·tls_entry_number(SB), NOPTR, $4
    
    // setldt(int entry, int address, int limit)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Mar 24 18:53:44 UTC 2023
    - 17.9K bytes
    - Viewed (0)
  6. src/cmd/link/internal/arm/asm.go

    		}
    
    		// .got entry
    		ldr.SetGot(s, int32(got.Size()))
    
    		// In theory, all GOT should point to the first PLT entry,
    		// Linux/ARM's dynamic linker will do that for us, but FreeBSD/ARM's
    		// dynamic linker won't, so we'd better do it ourselves.
    		got.AddAddrPlus(target.Arch, plt.Sym(), 0)
    
    		// .plt entry, this depends on the .got entry
    		ldr.SetPlt(s, int32(plt.Size()))
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 23 05:58:20 UTC 2023
    - 22.9K bytes
    - Viewed (0)
  7. maven-api-impl/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    org/apache/maven/plugin/AbstractMojo.class package org.apache.maven.plugin; public abstract synchronized class AbstractMojo implements Mojo, ContextEnabled { private logging.Log log; private java.util.Map pluginContext; public void AbstractMojo(); public void setLog(logging.Log); public logging.Log getLog(); public java.util.Map getPluginContext(); public void setPluginContext(java.util.Map); } org/apache/maven/plugin/AbstractMojoExecutio.class package org.apache.maven.plugin; public abstract synchronized class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Thu May 02 15:10:38 UTC 2024
    - 9.9K bytes
    - Viewed (0)
  8. maven-core/src/test/remote-repo/org/apache/maven/maven-plugin-api/2.0/maven-plugin-api-2.0.jar

    org/apache/maven/plugin/AbstractMojo.class package org.apache.maven.plugin; public abstract synchronized class AbstractMojo implements Mojo, ContextEnabled { private logging.Log log; private java.util.Map pluginContext; public void AbstractMojo(); public void setLog(logging.Log); public logging.Log getLog(); public java.util.Map getPluginContext(); public void setPluginContext(java.util.Map); } org/apache/maven/plugin/AbstractMojoExecutio.class package org.apache.maven.plugin; public abstract synchronized class...
    Registered: Wed Jun 12 09:55:16 UTC 2024
    - Last Modified: Fri Oct 23 23:48:02 UTC 2009
    - 9.9K bytes
    - Viewed (0)
  9. src/time/time.go

    		offset += int(buf[2])
    	}
    
    	*t = Time{}
    	t.wall = uint64(nsec)
    	t.ext = sec
    
    	if offset == -1*60 {
    		t.setLoc(&utcLoc)
    	} else if _, localoff, _, _, _ := Local.lookup(t.unixSec()); offset == localoff {
    		t.setLoc(Local)
    	} else {
    		t.setLoc(FixedZone("", offset))
    	}
    
    	return nil
    }
    
    // TODO(rsc): Remove GobEncoder, GobDecoder, MarshalJSON, UnmarshalJSON in Go 2.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 50.7K bytes
    - Viewed (0)
  10. security/pkg/nodeagent/cache/secretcache.go

    func (s *secretCache) GetRoot() (rootCert []byte) {
    	s.mu.RLock()
    	defer s.mu.RUnlock()
    	return s.certRoot
    }
    
    // SetRoot sets root cert into cache. This method is thread safe.
    func (s *secretCache) SetRoot(rootCert []byte) {
    	s.mu.Lock()
    	defer s.mu.Unlock()
    	s.certRoot = rootCert
    }
    
    func (s *secretCache) GetWorkload() *security.SecretItem {
    	s.mu.RLock()
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Mar 04 08:29:46 UTC 2024
    - 28.2K bytes
    - Viewed (0)
Back to top