Search Options

Results per page
Sort
Preferred Languages
Advance

Results 31 - 40 of 112 for arab (0.13 sec)

  1. pkg/util/iptables/iptables_linux.go

    	var err error
    	var success bool
    
    	l := &locker{}
    	defer func(l *locker) {
    		// Clean up immediately on failure
    		if !success {
    			l.Close()
    		}
    	}(l)
    
    	// Grab both 1.6.x and 1.4.x-style locks; we don't know what the
    	// iptables-restore version is if it doesn't support --wait, so we
    	// can't assume which lock method it'll use.
    
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Tue Aug 24 19:47:49 UTC 2021
    - 2.6K bytes
    - Viewed (0)
  2. pkg/test/framework/config/config.go

    			}
    		}()
    
    		// exclude non-istio flags and flags that were set via command line
    		if !strings.HasPrefix(f.Name, prefix) {
    			return
    		}
    		if _, ok := set[f.Name]; ok {
    			return
    		}
    
    		// grab the map containing the last "." separated key
    		keys := strings.Split(f.Name, ".")
    		parentPath, key := keys[:len(keys)-1], keys[len(keys)-1]
    		parent := cfg
    		for _, k := range parentPath {
    			parent = parent.Map(k)
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Jul 25 19:30:47 UTC 2022
    - 3.1K bytes
    - Viewed (0)
  3. docs/tr/docs/tutorial/path-params.md

    Oluşturulan şema <a href="https://github.com/OAI/OpenAPI-Specification/blob/master/versions/3.1.0.md" class="external-link" target="_blank">OpenAPI</a> standardına uygun olduğu için birçok uyumlu araç mevcuttur.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Fri Mar 22 01:42:11 UTC 2024
    - 10.8K bytes
    - Viewed (0)
  4. tensorflow/c/experimental/filesystem/plugins/gcs/ram_file_block_cache.h

      /// be accessed after state == FINISHED, and it should never be modified.
      ///
      /// In order to prevent deadlocks, never grab the block-cache-wide mu_ lock
      /// AFTER grabbing any block's mu lock. It is safe to grab mu without locking
      /// mu_.
      struct Block {
        /// The block data.
        std::vector<char> data;
        /// A list iterator pointing to the block's position in the LRU list.
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 31 04:46:34 UTC 2020
    - 10.6K bytes
    - Viewed (0)
  5. src/cmd/internal/obj/arm64/a.out.go

    	C_AACON  // ADDCON offset in auto constant $a(FP)
    	C_AACON2 // 24-bit offset in auto constant $a(FP)
    	C_LACON  // 32-bit offset in auto constant $a(FP)
    	C_AECON  // ADDCON offset in extern constant $e(SB)
    
    	// TODO(aram): only one branch class should be enough
    	C_SBRA // for TYPE_BRANCH
    	C_LBRA
    
    	C_ZAUTO       // 0(RSP)
    	C_NSAUTO_16   // -256 <= x < 0, 0 mod 16
    	C_NSAUTO_8    // -256 <= x < 0, 0 mod 8
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Oct 18 17:56:30 UTC 2023
    - 18.1K bytes
    - Viewed (0)
  6. pkg/util/procfs/procfs_linux.go

    				return unicode.IsSpace(c) || c == ':'
    			})
    			if len(exe) == 0 {
    				continue
    			}
    			// Check if the name of the executable is what we are looking for
    			if re.MatchString(exe[0]) {
    				// Grab the PID from the directory path
    				pids = append(pids, pid)
    			}
    		}
    	}
    
    	return pids
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Jan 16 09:22:35 UTC 2023
    - 4.1K bytes
    - Viewed (0)
  7. src/runtime/sys_plan9_386.s

    #define ERRMAX 128	/* from os_plan9.h */
    
    // void errstr(int8 *buf, int32 len)
    TEXT errstr<>(SB),NOSPLIT,$0
    	MOVL    $41, AX
    	INT     $64
    	RET
    
    // func errstr() string
    // Only used by package syscall.
    // Grab error string due to a syscall made
    // in entersyscall mode, without going
    // through the allocator (issue 4994).
    // See ../syscall/asm_plan9_386.s:/·Syscall/
    TEXT runtime·errstr(SB),NOSPLIT,$8-8
    	get_tls(AX)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 21 22:12:04 UTC 2021
    - 4.5K bytes
    - Viewed (0)
  8. src/regexp/all_test.go

    		subs := re.FindSubmatch(s)
    		if string(subs[0]) != wantSubs {
    			b.Fatalf("FindSubmatch(%q)[0] = %q; want %q", s, subs[0], wantSubs)
    		}
    		if string(subs[1]) != "aab" {
    			b.Fatalf("FindSubmatch(%q)[1] = %q; want %q", s, subs[1], "aab")
    		}
    	}
    }
    
    func BenchmarkFindStringSubmatch(b *testing.B) {
    	b.StopTimer()
    	re := MustCompile("a(a+b+)b")
    	wantSubs := "aaabb"
    	s := "acbb" + wantSubs + "dd"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:36:03 UTC 2024
    - 25.8K bytes
    - Viewed (0)
  9. src/cmd/internal/obj/arm/a.out.go

    	// offset from the thread local base.
    	C_TLS_IE
    
    	C_TEXTSIZE
    
    	C_GOK
    
    	C_NCLASS /* must be the last */
    )
    
    const (
    	AAND = obj.ABaseARM + obj.A_ARCHSPECIFIC + iota
    	AEOR
    	ASUB
    	ARSB
    	AADD
    	AADC
    	ASBC
    	ARSC
    	ATST
    	ATEQ
    	ACMP
    	ACMN
    	AORR
    	ABIC
    
    	AMVN
    
    	/*
    	 * Do not reorder or fragment the conditional branch
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 05 16:22:12 UTC 2021
    - 7K bytes
    - Viewed (0)
  10. pkg/kubelet/cm/memorymanager/memory_manager.go

    	// This ensures that the call to `m.activePods()` below will succeed with
    	// the actual active pods list.
    	if !m.sourcesReady.AllReady() {
    		return
    	}
    
    	// We grab the lock to ensure that no new containers will grab memory block while
    	// executing the code below. Without this lock, its possible that we end up
    	// removing state that is newly added by an asynchronous call to
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Nov 01 00:50:45 UTC 2023
    - 17.1K bytes
    - Viewed (1)
Back to top