Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 770 for emberi (0.14 sec)

  1. test/ken/embed.go

    Eric Engestrom <******@****.***> 1459683807 +0100
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Sun Apr 03 17:03:15 UTC 2016
    - 4.3K bytes
    - Viewed (0)
  2. tensorflow/c/experimental/pluggable_profiler/pluggable_profiler.h

    //    plug-in.
    //    * It can be checked programmatically to determine which struct fields are
    //    available in the structure.
    //  * When a member is added to a struct, the struct size definition must be
    //  updated to use the new last member of the struct.
    //
    // Example usage:
    //   /* Sample TensorFlow code below, exact implementation might differ. */
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Tue Sep 14 20:04:34 UTC 2021
    - 7.4K bytes
    - Viewed (0)
  3. okhttp-tls/src/main/kotlin/okhttp3/tls/internal/der/Adapters.kt

            override fun decode(reader: DerReader): T {
              return reader.withTypeHint {
                val list = mutableListOf<Any?>()
    
                while (list.size < members.size) {
                  val member = members[list.size]
                  list += member.fromDer(reader)
                }
    
                if (reader.hasNext()) {
                  throw ProtocolException("unexpected ${reader.peekHeader()} at $reader")
                }
    
    Registered: Sun Jun 16 04:42:17 UTC 2024
    - Last Modified: Mon Jan 08 01:13:22 UTC 2024
    - 15K bytes
    - Viewed (0)
  4. analysis/analysis-api/src/org/jetbrains/kotlin/analysis/api/symbols/KtSymbol.kt

         * interface A<T> { fun x(): T }
         * interface B : A<Int> { }
         * ```
         *
         * The B will have a member B.foo(): Int, this member is generated inside interface B with substitution T -> Int,
         * such members are SUBSTITUTION_OVERRIDE
         */
        SUBSTITUTION_OVERRIDE,
    
        /**
         * Member symbol which was generated by compiler when using `by` interface delegation
         * e.g,
         * ```
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jun 11 09:36:27 UTC 2024
    - 5K bytes
    - Viewed (0)
  5. staging/src/k8s.io/apiserver/pkg/util/flowcontrol/metrics/interface.go

    // differentiated by a series of label values
    type RatioedGaugeVec interface {
    	// NewForLabelValuesSafe makes a new vector member for the given tuple of label values,
    	// initialized with the given numerator and denominator.
    	// Unlike the usual Vec WithLabelValues method, this is intended to be called only
    	// once per vector member (at the start of its lifecycle).
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jun 13 03:37:15 UTC 2022
    - 2.5K bytes
    - Viewed (0)
  6. staging/src/k8s.io/apiserver/pkg/storage/etcd3/testserver/test_server.go

    	}
    	return ports, nil
    }
    
    // NewTestConfig returns a configuration for an embedded etcd server.
    // The configuration is based on embed.NewConfig(), with the following adjustments:
    //   - sets UnsafeNoFsync = true to improve test performance (only reasonable in a test-only
    //     single-member server we never intend to restart or keep data from)
    //   - uses free ports for client and peer listeners
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat May 06 11:40:40 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  7. src/main/java/jcifs/SidResolver.java

         *            name associated with SIDs will be required, the SID_FLAG_RESOLVE_SIDS
         *            flag should be used which causes all group member SIDs to be resolved
         *            together in a single more efficient operation.
         * @return a map of group SID to member SIDs
         * @throws CIFSException
         */
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 4.6K bytes
    - Viewed (0)
  8. test/fixedbugs/notinheap.go

    // license that can be found in the LICENSE file.
    
    // Test type-checking errors for go:notinheap.
    
    package p
    
    //go:notinheap
    type nih struct{}
    
    type embed4 map[nih]int // ERROR "incomplete \(or unallocatable\) map key not allowed"
    
    type embed5 map[int]nih // ERROR "incomplete \(or unallocatable\) map value not allowed"
    
    type emebd6 chan nih // ERROR "chan of incomplete \(or unallocatable\) type not allowed"
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 02 17:46:15 UTC 2022
    - 1.3K bytes
    - Viewed (0)
  9. src/go/internal/gccgoimporter/ar.go

    			return nil, err
    		}
    	}
    }
    
    // elfFromAr tries to get export data from an archive member as an ELF file.
    // If there is no export data, this returns nil, nil.
    func elfFromAr(member *io.SectionReader) (io.ReadSeeker, error) {
    	ef, err := elf.NewFile(member)
    	if err != nil {
    		return nil, err
    	}
    	sec := ef.Section(".go_export")
    	if sec == nil {
    		return nil, nil
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 30 14:14:36 UTC 2022
    - 4.4K bytes
    - Viewed (0)
  10. src/cmd/go/internal/modindex/scan.go

    			}
    			rf.imports = append(rf.imports, rawImport{path: imp.path, position: fset.Position(imp.pos)})
    		}
    		rf.cgoDirectives = strings.Join(cgoDirectives, "\n")
    		for _, emb := range info.embeds {
    			rf.embeds = append(rf.embeds, embed{emb.pattern, emb.pos})
    		}
    
    	}
    	return p
    }
    
    // extractCgoDirectives filters only the lines containing #cgo directives from the input,
    // which is the comment on import "C".
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Mar 26 19:58:28 UTC 2024
    - 8.5K bytes
    - Viewed (0)
Back to top