Search Options

Results per page
Sort
Preferred Languages
Advance

Results 91 - 100 of 238 for END (0.07 sec)

  1. src/go/build/build.go

    	case "gccgo":
    		pkgtargetroot = "pkg/gccgo_" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    	case "gc":
    		pkgtargetroot = "pkg/" + ctxt.GOOS + "_" + ctxt.GOARCH + suffix
    	default:
    		// Save error for end of function.
    		pkgerr = fmt.Errorf("import %q: unknown compiler %q", path, ctxt.Compiler)
    	}
    	setPkga := func() {
    		switch ctxt.Compiler {
    		case "gccgo":
    			dir, elem := pathpkg.Split(p.ImportPath)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62.3K bytes
    - Viewed (0)
  2. cmd/admin-handlers-users.go

    	} else {
    		// Check if group already exists
    		if _, gerr := globalIAMSys.GetGroupDescription(updReq.Group); gerr != nil {
    			// If group does not exist, then check if the group has beginning and end space characters
    			// we will reject such group names.
    			if errors.Is(gerr, errNoSuchGroup) && hasSpaceBE(updReq.Group) {
    				writeErrorResponseJSON(ctx, w, errorCodes.ToAPIErr(ErrAdminResourceInvalidArgument), r.URL)
    Registered: Sun Jun 16 00:44:34 UTC 2024
    - Last Modified: Tue May 28 17:19:04 UTC 2024
    - 78.6K bytes
    - Viewed (0)
  3. tensorflow/compiler/mlir/lite/transforms/optimize_patterns.td

        (Arith_ConstantOp $begin),
        (Arith_ConstantOp $end),
        (Arith_ConstantOp $stride),
        ZeroIntAttr:$_,
        ZeroIntAttr:$_,
        ZeroIntAttr:$_,
        ZeroIntAttr:$_,
        ZeroIntAttr:$_,
        ConstBoolAttrFalse),
      (TFL_SliceOp $input,
        (Arith_ConstantOp $begin),
        (Arith_ConstantOp (GetOffSet $begin, $end))),
      [(IsAllOnesConstant $stride),
       (HasNonNegativeValues $begin),
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Thu May 16 20:31:41 UTC 2024
    - 66.4K bytes
    - Viewed (0)
  4. common/scripts/metallb-native.yaml

                  keepaliveTime:
                    description: Requested BGP keepalive time, per RFC4271.
                    type: string
                  myASN:
                    description: AS number to use for the local end of the session.
                    format: int32
                    maximum: 4294967295
                    minimum: 0
                    type: integer
                  nodeSelectors:
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Fri Feb 23 23:56:31 UTC 2024
    - 63.9K bytes
    - Viewed (0)
  5. src/runtime/mgc.go

    // The heap is swept span-by-span both lazily (when a goroutine needs another span)
    // and concurrently in a background goroutine (this helps programs that are not CPU bound).
    // At the end of STW mark termination all spans are marked as "needs sweeping".
    //
    // The background sweeper goroutine simply sweeps spans one-by-one.
    //
    // To avoid requesting more OS memory while there are unswept spans, when a
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
  6. src/runtime/map.go

    				} else {
    					typedmemmove(t.Elem, dst.e, e)
    				}
    				dst.i++
    				// These updates might push these pointers past the end of the
    				// key or elem arrays.  That's ok, as we have the overflow pointer
    				// at the end of the bucket to protect against pointing past the
    				// end of the bucket.
    				dst.k = add(dst.k, uintptr(t.KeySize))
    				dst.e = add(dst.e, uintptr(t.ValueSize))
    			}
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 57.6K bytes
    - Viewed (0)
  7. pilot/pkg/networking/core/sidecar_simulation_test.go

    spec:
      hosts:
    {{- range $val := .Matches }}
      - "{{$val}}"
    {{ end }}
      http:
      - route:
        - destination:
            host: {{.Dest}}
    {{ with .Port }}
            port:
              number: {{.}}
    {{ end }}
    {{ with .PortMatch }}
        match:
        - port: {{.}}
    {{ end }}
    `, args)
    	default:
    		panic(variant + " unknown")
    	}
    }
    
    Registered: Fri Jun 14 15:00:06 UTC 2024
    - Last Modified: Thu Jun 13 01:56:28 UTC 2024
    - 84.7K bytes
    - Viewed (0)
  8. tensorflow/c/c_api_test.cc

        const OpDefs& ops = op_list.op();
        bool found = std::find_if(ops.begin(), ops.end(),
                                  [](const tensorflow::OpDef& op_def) {
                                    return op_def.name() == "TestCApi";
                                  }) != ops.end();
        EXPECT_TRUE(found);
        TF_DeleteBuffer(op_list_buffer);
      }
    }
    
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Mon Apr 15 03:35:10 UTC 2024
    - 96.9K bytes
    - Viewed (0)
  9. src/cmd/vendor/github.com/ianlancetaylor/demangle/demangle.go

    			name = name[1:]
    		}
    		for len(name) > 0 && isDigit(name[0]) {
    			name = name[1:]
    		}
    		if len(name) > 0 && name[0] != '.' {
    			return nil, errors.New("unparsed characters at end of mangled name")
    		}
    		a = &Special{Prefix: "invocation function for block in ", Val: a}
    		return a, nil
    	}
    
    	const prefix = "_GLOBAL_"
    	if strings.HasPrefix(name, prefix) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 31 19:48:28 UTC 2024
    - 94.1K bytes
    - Viewed (0)
  10. platforms/core-configuration/model-core/src/main/java/org/gradle/model/internal/manage/schema/extract/ManagedProxyClassGenerator.java

            Label start = new Label();
            Label end = new Label();
            Label handler = new Label();
    
            MethodVisitor methodVisitor = declareMethod(visitor, method);
    
            methodVisitor.visitTryCatchBlock(start, end, handler, null);
    
            setCanCallSettersField(methodVisitor, generatedType, false);
    
    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Mon Dec 11 13:37:56 UTC 2023
    - 55.3K bytes
    - Viewed (0)
Back to top