Search Options

Results per page
Sort
Preferred Languages
Advance

Results 101 - 110 of 125 for Ne (0.02 sec)

  1. docs/tr/docs/tutorial/query-params.md

    
    ## Çoklu Yol ve Sorgu Parametreleri
    
    **FastAPI** neyin ne olduğunu ayırt edebileceğinden dolayı aynı anda birden fazla yol ve sorgu parametresi tanımlayabilirsiniz.
    
    Ve parametreleri, herhangi bir sıraya koymanıza da gerek yoktur.
    
    İsimlerine göre belirleneceklerdir:
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Thu Apr 18 19:53:19 UTC 2024
    - 5.9K bytes
    - Viewed (0)
  2. hack/verify-api-groups.sh

    		found=0
    		for group_without_codegen in "${groups_without_codegen[@]}"; do
    			if [[ "${group_without_codegen}" == "${group_dirname}" ]]; then
    				found=1
    			fi
    		done
    		if [[ "${found}" -ne "1" && -f "${group_dirname}/types.go" ]] ; then
    			echo "need to add ${group_dirname}/ to ${client_gen_file}"
    			exit 1
    		fi
    	fi
    done
    
    # import_known_versions checks to be sure we'll get installed
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Sat Apr 13 09:26:16 UTC 2024
    - 4.2K bytes
    - Viewed (0)
  3. docs/tr/docs/project-generation.md

    * Atom Hydrogen veya Visual Studio Code Jupyter gibi uzantılarla uzaktan veya Docker içi geliştirme için **Jupyter Çekirdekleri** ile kolay Python entegrasyonu....
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Mon Jan 22 19:55:41 UTC 2024
    - 6K bytes
    - Viewed (0)
  4. tests/integration/pilot/locality_test.go

        number: 80
        protocol: HTTP
      resolution: {{.Resolution}}
      endpoints:
      - address: {{.Local}}
        locality: region/zone/subzone
      - address: {{.Remote}}
        locality: notregion/notzone/notsubzone
      {{ if ne .NearLocal "" }}
      - address: {{.NearLocal}}
        locality: "nearregion/zone/subzone"
      {{ end }}
    ---
    apiVersion: networking.istio.io/v1alpha3
    kind: DestinationRule
    metadata:
      name: external-service-locality
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Mon Apr 08 22:02:59 UTC 2024
    - 6.6K bytes
    - Viewed (0)
  5. tensorflow/compiler/mlir/tensorflow/tests/mlprogram.mlir

        // CHECK-DAG: [[zero:%.*]] = stablehlo.constant dense<0>
        // CHECK-DAG: [[r4:%.*]] = stablehlo.divide [[r3]], [[one]]
        // CHECK-DAG: [[r5:%.*]] = stablehlo.compare NE
        // CHECK-DAG: [[r6:%.*]] = stablehlo.compare LT
        // CHECK: [[result:%.*]] = stablehlo.select
        // CHECK-NEXT: return [[result]]
        %0 = tf_executor.graph {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu Feb 22 19:27:16 UTC 2024
    - 7.4K bytes
    - Viewed (0)
  6. src/cmd/internal/obj/arm64/doc.go

    Examples:
    
    	FCCMPD AL, F8, F26, $0     <=>    fccmp d26, d8, #0x0, al
    	FCCMPS VS, F29, F4, $4     <=>    fccmp s4, s29, #0x4, vs
    	FCCMPED LE, F20, F5, $13   <=>    fccmpe d5, d20, #0xd, le
    	FCCMPES NE, F26, F10, $0   <=>    fccmpe s10, s26, #0x0, ne
    
    (6) CCMN, CCMNW, CCMP, CCMPW <cond>, <Rn>, $<imm>, $<nzcv>
    
    Examples:
    
    	CCMP MI, R22, $12, $13     <=>    ccmp x22, #0xc, #0xd, mi
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Aug 07 00:21:42 UTC 2023
    - 9.6K bytes
    - Viewed (0)
  7. src/internal/bytealg/compare_amd64.s

    	JMP	big_loop
    #else
    	JMP	big_loop_avx2
    #endif
    loop:
    	CMPQ	R8, $16
    	JBE	_0through16
    	MOVOU	(SI), X0
    	MOVOU	(DI), X1
    	PCMPEQB X0, X1
    	PMOVMSKB X1, AX
    	XORQ	$0xffff, AX	// convert EQ to NE
    	JNE	diff16	// branch if at least one byte is not equal
    	ADDQ	$16, SI
    	ADDQ	$16, DI
    	SUBQ	$16, R8
    	JMP	loop
    
    diff64:
    	ADDQ	$48, SI
    	ADDQ	$48, DI
    	JMP	diff16
    diff48:
    	ADDQ	$32, SI
    	ADDQ	$32, DI
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Aug 18 17:17:01 UTC 2022
    - 4.3K bytes
    - Viewed (0)
  8. pkg/kubelet/checkpointmanager/checkpoint_manager_test.go

    	// Test ListCheckpoints
    	keys, err = manager.ListCheckpoints()
    	assert.NoError(t, err)
    	assert.Equal(t, keys, []string{"key2"})
    
    	// Test Get NonExisted Checkpoint
    	checkpointNE := newFakeCheckpointV1("NE", nil, false)
    	err = manager.GetCheckpoint("key1", checkpointNE)
    	assert.Error(t, err)
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Mon Nov 12 06:41:04 UTC 2018
    - 6.6K bytes
    - Viewed (0)
  9. hack/lib/protoc.sh

    }
    
    # Compares the contents of $1 and $2
    # Echo's $3 in case of error and exits 1
    function kube::protoc::diff() {
      local ret=0
      diff -I "gzipped FileDescriptorProto" -I "0x" -Naupr "${1}" "${2}" || ret=$?
      if [[ ${ret} -ne 0 ]]; then
        echo "${3}"
        exit 1
      fi
    }
    
    function kube::protoc::install() {
      # run in a subshell to isolate caller from directory changes
      (
        local os
        local arch
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Fri Mar 01 20:53:13 UTC 2024
    - 5.1K bytes
    - Viewed (0)
  10. src/packaging/deb/init.d/fess

    # Description:       Starts fess using start-stop-daemon
    ### END INIT INFO
    
    PATH=/bin:/usr/bin:/sbin:/usr/sbin
    NAME=fess
    DESC="Fess Server"
    DEFAULT=/etc/default/$NAME
    
    if [ `id -u` -ne 0 ]; then
    	echo "You need root privileges to run this script"
    	exit 1
    fi
    
    
    . /lib/lsb/init-functions
    
    if [ -r /etc/default/rcS ]; then
    	. /etc/default/rcS
    fi
    
    Registered: Wed Jun 12 13:08:18 UTC 2024
    - Last Modified: Sun Jan 15 06:32:15 UTC 2023
    - 5.8K bytes
    - Viewed (0)
Back to top