Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,196 for assignOp (0.15 sec)

  1. platforms/core-configuration/declarative-dsl-core/src/test/kotlin/org/gradle/internal/declarativedsl/demo/demoPlugins/PluginsDemo.kt

        printResolvedAssignments(result)
    }
    
    
    class Tests {
        @Test
        fun `unit assigned to val is reported as an error`() {
            val result = schema.resolve("val x = plugins { }")
            assertTrue { result.errors.single().errorReason == ErrorReason.UnitAssignment }
        }
    
        @Test
        fun `unit assigned to property is reported as an error`() {
            val result = schema.resolve("plugins = plugins { }")
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 14 10:08:01 UTC 2024
    - 2.2K bytes
    - Viewed (0)
  2. src/runtime/os_freebsd.go

    // Undocumented numbers from FreeBSD's lib/libc/gen/sysctlnametomib.c.
    const (
    	_CTL_QUERY     = 0
    	_CTL_QUERY_MIB = 3
    )
    
    // sysctlnametomib fill mib with dynamically assigned sysctl entries of name,
    // return count of effected mib slots, return 0 on error.
    func sysctlnametomib(name []byte, mib *[_CTL_MAXNAME]uint32) uint32 {
    	oid := [2]uint32{_CTL_QUERY, _CTL_QUERY_MIB}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Dec 05 20:34:30 UTC 2023
    - 11.6K bytes
    - Viewed (0)
  3. src/cmd/compile/internal/walk/complit.go

    	// 1. make a static array
    	//	var vstat [...]t
    	// 2. assign (data statements) the constant part
    	//	vstat = constpart{}
    	// 3. make an auto pointer to array and allocate heap to it
    	//	var vauto *[...]t = new([...]t)
    	// 4. copy the static array to the auto array
    	//	*vauto = vstat
    	// 5. for each dynamic part assign to the array
    	//	vauto[i] = dynamic part
    	// 6. assign slice of allocated heap to var
    	//	var = vauto[:]
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 19:03:54 UTC 2023
    - 19.5K bytes
    - Viewed (0)
  4. tensorflow/compiler/mlir/tensorflow/tests/resource_analyzer.mlir

    // RUN:        -split-input-file -tf-resource-analyzer-test %s \
    // RUN:   | FileCheck %s
    
    // TODO(b/269548549): Add tests to cover more patterns.
    
    // Test that VarHandleOp is not marked as "potentially written" if it is not
    // assigned inside the function called by "tf.BatchFunction".
    
    module {
    // CHECK-LABEL: @serving_default
      func.func @serving_default() -> (tensor<*xi32>) {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Aug 14 15:35:49 UTC 2023
    - 2.3K bytes
    - Viewed (0)
  5. src/vendor/golang.org/x/text/unicode/bidi/core.go

    			}
    			sequences = append(sequences, p.isolatingRunSequence(currentRunSequence))
    		}
    	}
    	return sequences
    }
    
    // Assign level information to characters removed by rule X9. This is for
    // ease of relating the level information to the original input data. Note
    // that the levels assigned to these codes are arbitrary, they're chosen so
    // as to avoid breaking level runs.
    func (p *paragraph) assignLevelsToCharactersRemovedByX9() {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon May 16 22:26:23 UTC 2022
    - 29.4K bytes
    - Viewed (0)
  6. test/stringrange.go

    		ok = false
    	}
    
    	i = 12345
    	c = 23456
    	for i, c = range "" {
    	}
    	if i != 12345 {
    		fmt.Println("range empty string assigned to index:", i)
    		ok = false
    	}
    	if c != 23456 {
    		fmt.Println("range empty string assigned to value:", c)
    		ok = false
    	}
    
    	for _, c := range "a\xed\xa0\x80a" {
    		if c != 'a' && c != utf8.RuneError {
    			fmt.Printf("surrogate UTF-8 does not error: %U\n", c)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Aug 08 21:01:23 UTC 2012
    - 1.5K bytes
    - Viewed (0)
  7. tensorflow/compiler/mlir/tensorflow/tests/graphdef2mlir/target.pbtxt

      }
      attr {
        key: "shape"
        value {
          shape {
          }
        }
      }
      attr {
        key: "shared_name"
        value {
          s: ""
        }
      }
    }
    node {
      name: "Variable/Assign"
      op: "Assign"
      input: "Variable"
      input: "Variable/initial_value"
      attr {
        key: "T"
        value {
          type: DT_FLOAT
        }
      }
      attr {
        key: "_class"
        value {
          list {
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Jun 10 19:53:21 UTC 2020
    - 4.4K bytes
    - Viewed (0)
  8. platforms/core-configuration/model-core/src/test/groovy/org/gradle/internal/instantiation/generator/AsmBackedClassGeneratorDecoratedTest.groovy

            beanWithOverloads.getSomeValue().toString() == "<display name> property 'someValue'"
    
            // Does not assign display name to mutable property
            mutableBean.someValue.toString() == "property(java.lang.String, undefined)"
        }
    
        def "assigns display name to read only non-final nested property that is not managed"() {
            def bean = create(NestedBeanClass)
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 22K bytes
    - Viewed (0)
  9. platforms/core-configuration/declarative-dsl-core/src/main/kotlin/org/gradle/internal/declarativedsl/analysis/ResolutionOutput.kt

        }
    
        data class FromLocalValue(val localValue: LocalValue, val assigned: ObjectOrigin) : DelegatingObjectOrigin {
            override val delegate: ObjectOrigin
                get() = assigned
    
            override val originElement: LanguageTreeElement
                get() = assigned.originElement
    
            override fun toString(): String = "(val ${localValue.name} = $assigned)"
        }
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue May 21 14:27:23 UTC 2024
    - 9.8K bytes
    - Viewed (0)
  10. helm/minio/README.md

    ```bash
    helm install --set persistence.enabled=false minio/minio
    ```
    
    > *"An emptyDir volume is first created when a Pod is assigned to a Node, and exists as long as that Pod is running on that node. When a Pod is removed from a node for any reason, the data in the emptyDir is deleted forever."*
    
    ### Existing PersistentVolumeClaim
    
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Wed Jan 24 07:27:57 UTC 2024
    - 10.9K bytes
    - Viewed (0)
Back to top