Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 50 of 92 for setTag (1.15 sec)

  1. platforms/core-configuration/model-core/src/integTest/groovy/org/gradle/model/managed/ScalarTypesInManagedModelIntegrationTest.groovy

                    void setStringProperty(String value)
    
                    File getFile()
                    void setFile(File file)
    
                    boolean isFlag()
                    void setFlag(boolean flag)
    
                    boolean getOtherFlag()
                    void setOtherFlag(boolean flag)
    
                    boolean isThirdFlag()
                    boolean getThirdFlag()
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Sep 28 09:51:04 UTC 2023
    - 27.1K bytes
    - Viewed (0)
  2. subprojects/core-api/src/main/java/org/gradle/tooling/provider/model/ParameterizedToolingModelBuilder.java

         * <pre>{@code
         * public interface MyParameter {
         *     String getValue();
         *     void setValue(String value);
         *
         *     boolean isFlag();
         *     void setFlag(boolean value);
         * }
         * }</pre>
         *
         * @return The type of the parameter.
         */
        Class<T> getParameterType();
    
        /**
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Thu Nov 30 12:40:59 UTC 2023
    - 3.6K bytes
    - Viewed (0)
  3. src/main/java/jcifs/dcerpc/DcerpcMessage.java

         * 
         * @param flag
         */
        public void unsetFlag ( int flag ) {
            this.flags &= ~flag;
        }
    
    
        /**
         * Set flag
         * 
         * @param flag
         */
        public void setFlag ( int flag ) {
            this.flags |= flag;
        }
    
    
        /**
         * 
         * @return result exception, if the call failed
         */
        public DcerpcException getResult () {
            if ( this.result != 0 )
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5K bytes
    - Viewed (0)
  4. src/main/java/jcifs/ntlmssp/NtlmMessage.java

         * @param value
         *            Indicates whether to set (<code>true</code>) or
         *            clear (<code>false</code>) the specified flag.
         */
        public void setFlag ( int flag, boolean value ) {
            setFlags(value ? ( getFlags() | flag ) : ( getFlags() & ( 0xffffffff ^ flag ) ));
        }
    
    
        static int readULong ( byte[] src, int index ) {
    Registered: Wed Jun 12 15:45:55 UTC 2024
    - Last Modified: Sun Jul 01 13:12:10 UTC 2018
    - 5.1K bytes
    - Viewed (0)
  5. tensorflow/c/kernels/histogram_summary_op.cc

      }
      tensorflow::Summary s;
      tensorflow::Summary::Value* v = s.add_value();
      const tensorflow::tstring& tag =
          *(static_cast<tensorflow::tstring*>(TF_TensorData(safe_tags_ptr.get())));
      v->set_tag(tag.data(), tag.size());
      histo.EncodeToProto(v->mutable_histo(), false /* Drop zero buckets */);
    
      Safe_TF_TensorPtr summary_tensor(TF_AllocateOutput(
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.5K bytes
    - Viewed (0)
  6. subprojects/core/src/main/java/org/gradle/internal/classpath/transforms/InstrumentingBackwardsCompatibilityVisitor.java

            String newHandleOwner = fixInternalNameForBackwardCompatibility(handle.getOwner());
            String newHandleDescriptor = fixDescriptorForBackwardCompatibility(handle.getDesc());
            return new Handle(handle.getTag(), newHandleOwner, handle.getName(), newHandleDescriptor, handle.isInterface());
        }
    
        private static String[] fixInternalNamesForBackwardsCompatibility(String[] internalNames) {
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Tue Sep 12 08:17:26 UTC 2023
    - 7.8K bytes
    - Viewed (0)
  7. tensorflow/c/kernels/summary_op.cc

      // Copy tags and values into summary protobuf
      for (int i = 0; i < TF_TensorElementCount(params.tags); ++i) {
        tensorflow::Summary::Value* v = s.add_value();
        const tensorflow::tstring& Ttags_i = tags_array[i];
        v->set_tag(Ttags_i.data(), Ttags_i.size());
        v->set_simple_value(static_cast<float>(values_array[i]));
      }
      TF_Tensor* summary_tensor =
          TF_AllocateOutput(ctx, 0, TF_ExpectedOutputDataType(ctx, 0), nullptr, 0,
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Wed Sep 06 19:12:29 UTC 2023
    - 6.2K bytes
    - Viewed (0)
  8. src/cmd/compile/internal/ssa/trim.go

    		}
    		// If the original block contained u = φ(u0, u1, ..., un) and
    		// the current phi is
    		//    v = φ(v0, v1, ..., u, ..., vk)
    		// then the merged phi is
    		//    v = φ(v0, v1, ..., u0, ..., vk, u1, ..., un)
    		v.SetArg(i, u.Args[0])
    		v.AddArgs(u.Args[1:]...)
    	} else {
    		// If the original block contained u = φ(u0, u1, ..., un) and
    		// the current phi is
    		//    v = φ(v0, v1, ...,  vi, ..., vk)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Nov 18 17:59:44 UTC 2022
    - 4.2K bytes
    - Viewed (0)
  9. src/runtime/stack_test.go

    		}
    	}
    }
    
    func testDeferPtrsGoexit(c chan int, i int) {
    	var y int
    	defer func() {
    		c <- y
    	}()
    	defer setBig(&y, 42, bigBuf{})
    	useStackAndCall(i, Goexit)
    }
    
    func setBig(p *int, x int, b bigBuf) {
    	*p = x
    }
    
    // TestDeferPtrsPanic is like TestDeferPtrsGoexit, but it's using panic instead
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Jun 14 00:03:57 UTC 2023
    - 23.1K bytes
    - Viewed (0)
  10. test/escape_reflect.go

    	return v.Cap()
    }
    
    func setlen(x *[]int, n int) { // ERROR "x does not escape"
    	v := reflect.ValueOf(x).Elem()
    	v.SetLen(n)
    }
    
    func setcap(x *[]int, n int) { // ERROR "x does not escape"
    	v := reflect.ValueOf(x).Elem()
    	v.SetCap(n)
    }
    
    // Unfortunate: x doesn't need to escape to heap, just to result.
    func slice1(x []byte) []byte { // ERROR "leaking param: x$"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Sep 08 18:50:24 UTC 2023
    - 13.1K bytes
    - Viewed (0)
Back to top