Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 241 for cat1 (0.03 sec)

  1. docs/de/docs/tutorial/dependencies/classes-as-dependencies.md

    Zum Beispiel:
    
    ```Python
    class Cat:
        def __init__(self, name: str):
            self.name = name
    
    
    fluffy = Cat(name="Mr Fluffy")
    ```
    
    In diesem Fall ist `fluffy` eine Instanz der Klasse `Cat`.
    
    Und um `fluffy` zu erzeugen, rufen Sie `Cat` auf.
    
    Eine Python-Klasse ist also auch ein **Callable**.
    
    Registered: Mon Jun 17 08:32:26 UTC 2024
    - Last Modified: Sat Mar 30 18:01:58 UTC 2024
    - 12.3K bytes
    - Viewed (0)
  2. platforms/documentation/docs/src/snippets/native-binaries/google-test/groovy/libs/googleTest/1.7.0/include/gtest/gtest-param-test.h.pump

    // This statement will instantiate all tests from FooTest again, each
    // with parameter values "cat" and "dog":
    
    const char* pets[] = {"cat", "dog"};
    INSTANTIATE_TEST_CASE_P(AnotherInstantiationName, FooTest, ValuesIn(pets));
    
    // The tests from the instantiation above will have these names:
    //
    //    * AnotherInstantiationName/FooTest.DoesBlah/0 for "cat"
    //    * AnotherInstantiationName/FooTest.DoesBlah/1 for "dog"
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Nov 27 17:53:42 UTC 2023
    - 18.4K bytes
    - Viewed (0)
  3. docs/bucket/replication/delete-replication.sh

    	set -x
    fi
    
    trap 'catch $LINENO' ERR
    
    # shellcheck disable=SC2120
    catch() {
    	if [ $# -ne 0 ]; then
    		echo "error on line $1"
    		echo "dc1 server logs ========="
    		cat /tmp/dc1.log
    		echo "dc2 server logs ========="
    		cat /tmp/dc2.log
    	fi
    
    	echo "Cleaning up instances of MinIO"
    	set +e
    	pkill minio
    	pkill mc
    	rm -rf /tmp/xl/
    }
    
    catch
    
    set -e
    export MINIO_CI_CD=1
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Sat May 18 18:19:01 UTC 2024
    - 3K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/lower_tf.mlir

    // CHECK:           %[[SUB:.*]] = "tf.Sub"(%[[CST]], %[[SCATTER]]) : (tensor<i32>, tensor<1x24xi32>) -> tensor<1x24xi32>
    // CHECK:           %[[MUL:.*]] = "tf.Mul"(%[[SUB]], %[[CAST0]]) : (tensor<1x24xi32>, tensor<1x24xi32>) -> tensor<1x24xi32>
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Fri Jan 05 18:35:42 UTC 2024
    - 92K bytes
    - Viewed (0)
  5. pkg/kube/inject/testdata/inject/ready_live.yaml

                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                exec:
                  command:
                    - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 956 bytes
    - Viewed (0)
  6. src/slices/example_test.go

    	// Output:
    	// Bob
    }
    
    func ExampleReplace() {
    	names := []string{"Alice", "Bob", "Vera", "Zac"}
    	names = slices.Replace(names, 1, 3, "Bill", "Billie", "Cat")
    	fmt.Println(names)
    	// Output:
    	// [Alice Bill Billie Cat Zac]
    }
    
    func ExampleReverse() {
    	names := []string{"alice", "Bob", "VERA"}
    	slices.Reverse(names)
    	fmt.Println(names)
    	// Output:
    	// [VERA Bob alice]
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 10 17:28:50 UTC 2024
    - 8.1K bytes
    - Viewed (0)
  7. pkg/kube/inject/testdata/inject/https-probes.yaml

                - name: http
                  containerPort: 90
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                exec:
                  command:
                    - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 984 bytes
    - Viewed (0)
  8. src/image/png/writer.go

    		}
    	}
    	if sum < best {
    		best = sum
    		filter = ftNone
    	}
    
    	// The sub filter.
    	sum = 0
    	for i := 0; i < bpp; i++ {
    		cdat1[i] = cdat0[i]
    		sum += abs8(cdat1[i])
    	}
    	for i := bpp; i < n; i++ {
    		cdat1[i] = cdat0[i] - cdat0[i-bpp]
    		sum += abs8(cdat1[i])
    		if sum >= best {
    			break
    		}
    	}
    	if sum < best {
    		best = sum
    		filter = ftSub
    	}
    
    	// The average filter.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 11 17:08:05 UTC 2024
    - 15.4K bytes
    - Viewed (0)
  9. pkg/kube/inject/testdata/inject/startup_ready_live.yaml

                httpGet:
                  port: http
              livenessProbe:
                httpGet:
                  port: http
              readinessProbe:
                exec:
                  command:
                    - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Tue Aug 18 21:43:45 UTC 2020
    - 1.1K bytes
    - Viewed (0)
  10. pkg/kube/inject/testdata/inject/hello-probes-noProxyHoldApplication-ProxyConfig.yaml

            ports:
            - name: http
              containerPort: 90
            livenessProbe:
              httpGet:
                port: http
            readinessProbe:
              exec:
                command:
                - cat
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Nov 13 08:52:02 UTC 2020
    - 996 bytes
    - Viewed (0)
Back to top